232 lines
5.0 KiB
Nix
Executable File
232 lines
5.0 KiB
Nix
Executable File
{
|
|
lib,
|
|
pkgs,
|
|
namespace,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib.${namespace}) enabled disabled;
|
|
displayLeft = {
|
|
input = "DP-1";
|
|
resolution = "3840x2160";
|
|
refreshRate = "240.00000";
|
|
};
|
|
displayRight = {
|
|
input = "DP-2";
|
|
resolution = "3840x2160";
|
|
refreshRate = "240.00000";
|
|
};
|
|
in
|
|
{
|
|
home.username = "matt";
|
|
|
|
${namespace} = {
|
|
sops = {
|
|
enable = true;
|
|
};
|
|
shell-aliases = {
|
|
enable = true;
|
|
};
|
|
|
|
programs = {
|
|
hyprland = {
|
|
enable = true;
|
|
primaryDisplay = "DP-1";
|
|
|
|
monitorv2 = [
|
|
{
|
|
name = displayLeft.input;
|
|
mode = "${displayLeft.resolution}@${displayLeft.refreshRate}";
|
|
position = "0x0";
|
|
scale = 1.0;
|
|
extra = [
|
|
"bitdepth"
|
|
"10"
|
|
"cm"
|
|
"hdr"
|
|
"sdrbrightness"
|
|
"1.2"
|
|
"sdrsaturation"
|
|
"0.98"
|
|
];
|
|
}
|
|
{
|
|
name = displayRight.input;
|
|
mode = "${displayRight.resolution}@${displayRight.refreshRate}";
|
|
position = "3840x0";
|
|
scale = 1.0;
|
|
extra = [
|
|
"bitdepth"
|
|
"10"
|
|
"cm"
|
|
"hdr"
|
|
"sdrbrightness"
|
|
"1.5"
|
|
"sdrsaturation"
|
|
"0.98"
|
|
];
|
|
}
|
|
];
|
|
|
|
workspace = [
|
|
"name:firefox, monitor:${displayRight.input}, default:false, special, class:(.*firefox.*)"
|
|
"name:discord, monitor:${displayRight.input}, default:true, special, title:(.*vesktop.*), title:(.*Apple Music.*)"
|
|
"name:steam, monitor:${displayLeft.input}, default:false, special, class:(.*[Ss]team.*)"
|
|
];
|
|
|
|
windowRule = [
|
|
"size 2160 7680, tag:horizonrdp"
|
|
];
|
|
|
|
autostartCommands = [
|
|
"[silent] firefox"
|
|
"[silent] vesktop"
|
|
"[silent] chromium --app=\"https://music.apple.com\""
|
|
"[silent] steam"
|
|
];
|
|
|
|
hyprpaper = {
|
|
wallpaperPath = "/run/wallpaper.jpg";
|
|
};
|
|
|
|
keybinds = {
|
|
bind = [
|
|
"$mod, A, exec, chromium --app=\"https://music.apple.com\""
|
|
"$mod, C, exec, vesktop"
|
|
"$mod, G, exec, steam"
|
|
];
|
|
};
|
|
|
|
defaultApps = {
|
|
browser = pkgs.firefox;
|
|
};
|
|
};
|
|
btop = enabled;
|
|
kitty = {
|
|
enable = true;
|
|
font = {
|
|
name = "JetBrainsMono NFM";
|
|
package = pkgs.nerd-fonts.jetbrains-mono;
|
|
};
|
|
};
|
|
mako = {
|
|
enable = true;
|
|
fontName = "JetBrainsMono NFM";
|
|
};
|
|
nwg-dock = enabled;
|
|
nwg-drawer = enabled;
|
|
nwg-panel = {
|
|
enable = true;
|
|
defaultApps = {
|
|
browser = pkgs.firefox;
|
|
};
|
|
};
|
|
waybar = {
|
|
enable = true;
|
|
|
|
layer = "bottom";
|
|
|
|
networkInterface = "wlp9s0";
|
|
|
|
modules-right = [
|
|
"custom/lights"
|
|
"temperature"
|
|
"temperature#gpu"
|
|
"keyboard-state#capslock"
|
|
"keyboard-state#numlock"
|
|
"wireplumber#sink"
|
|
"wireplumber#source"
|
|
"bluetooth"
|
|
"network"
|
|
"idle_inhibitor"
|
|
"clock"
|
|
"custom/weather"
|
|
];
|
|
|
|
extraModules = {
|
|
"custom/lights" = {
|
|
tooltip = false;
|
|
exec = "waybar-hass --get_light light.living_room_lights";
|
|
interval = "once";
|
|
format = "{text}"; # "";
|
|
on-click = "waybar-hass --toggle_light light.living_room_lights";
|
|
return-type = "json";
|
|
};
|
|
};
|
|
|
|
extraModulesStyle = ''
|
|
#custom-lights {
|
|
color: #88c0d0;
|
|
background-color: #2e3440;
|
|
opacity: 0.8;
|
|
border-left: 5px solid #88c0d0;
|
|
}
|
|
|
|
#custom-lights:hover {
|
|
background: #4c566a;
|
|
}
|
|
'';
|
|
};
|
|
wlogout = enabled;
|
|
wofi = enabled;
|
|
};
|
|
};
|
|
|
|
services = {
|
|
remmina = {
|
|
enable = true;
|
|
addRdpMimeTypeAssoc = true;
|
|
};
|
|
};
|
|
|
|
programs = {
|
|
password-store = enabled;
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
pkgs.${namespace}.bolt-launcher
|
|
|
|
bottles
|
|
compose2nix
|
|
discord
|
|
distrobox
|
|
heroic
|
|
omnissa-horizon-client
|
|
jq
|
|
lutris
|
|
lzip
|
|
morph
|
|
orca-slicer
|
|
piper
|
|
prismlauncher
|
|
protontricks
|
|
protonvpn-gui
|
|
python3
|
|
runelite
|
|
smile
|
|
unigine-heaven
|
|
via
|
|
virt-manager
|
|
vorta
|
|
waydroid-helper
|
|
];
|
|
|
|
specialisation = {
|
|
"cosmic".configuration = {
|
|
${namespace} = {
|
|
programs = {
|
|
hyprland = lib.mkForce disabled;
|
|
kitty = lib.mkForce disabled;
|
|
mako = lib.mkForce disabled;
|
|
nwg-dock = lib.mkForce disabled;
|
|
nwg-drawer = lib.mkForce disabled;
|
|
nwg-panel = lib.mkForce disabled;
|
|
waybar = lib.mkForce disabled;
|
|
wlogout = lib.mkForce disabled;
|
|
wofi = lib.mkForce disabled;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|