Compare commits

..

4 commits

6 changed files with 8 additions and 13 deletions

View file

@ -18,7 +18,7 @@ in
config = mkIf cfg.enable { config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
discord vesktop
]; ];
}; };
} }

View file

@ -25,7 +25,7 @@ in
general = { general = {
after_sleep_cmd = "hyprctl dispatch dpms on"; after_sleep_cmd = "hyprctl dispatch dpms on";
ignore_dbus_inhibit = false; ignore_dbus_inhibit = false;
lock_cmd = "${pkgs.hyprlock-blur}/bin/hyprlock-blur"; lock_cmd = "hyprlock-blur";
}; };
listener = [ listener = [

View file

@ -35,7 +35,7 @@ in
${namespace}.desktop.hyprland.settings = { ${namespace}.desktop.hyprland.settings = {
bind = [ bind = [
"$mod CTRL, l, exec, ${hyprlock-blur}/bin/hyprlock-blur" "$mod CTRL, l, exec, hyprlock-blur"
]; ];
}; };

View file

@ -125,7 +125,7 @@ in
"systemctl --user start hyprpolkitagent" "systemctl --user start hyprpolkitagent"
"[workspace 2 silent] steam --disable-gpu-compositing" # nvidia pls let me have nice things "[workspace 2 silent] steam --disable-gpu-compositing" # nvidia pls let me have nice things
"[workspace 8 silent] discord --disable-gpu-compositing" "[workspace 8 silent] vesktop"
"[workspace 9 silent] 1password" "[workspace 9 silent] 1password"
"[workspace 1 silent] zen" "[workspace 1 silent] zen"
]; ];

View file

@ -1,9 +0,0 @@
{ ... }:
final: prev: {
discord = prev.discord.overrideAttrs (oldAttrs: {
commandLineArgs = ''
--disable-gpu-compositing
'';
});
}

View file

@ -63,6 +63,9 @@ in
"2, monitor:DP-2" "2, monitor:DP-2"
"3, monitor:DP-2" "3, monitor:DP-2"
"4, monitor:DP-2" "4, monitor:DP-2"
"5, monitor:DP-2"
"6, monitor:DP-2"
"7, monitor:HDMI-A-1"
"8, monitor:HDMI-A-1" "8, monitor:HDMI-A-1"
"9, monitor:HDMI-A-1" "9, monitor:HDMI-A-1"
]; ];
@ -70,6 +73,7 @@ in
windowrulev2 = [ windowrulev2 = [
"workspace 8 silent, class:^(steam)$, title:^(Friends List)" "workspace 8 silent, class:^(steam)$, title:^(Friends List)"
"workspace 8 silent, class:^(discord)$, title:^(Discord)" "workspace 8 silent, class:^(discord)$, title:^(Discord)"
"workspace 7 silent, class:^(com.obsproject.Studio)$"
]; ];
}; };
}; };