Compare commits

..

No commits in common. "4bacba666f86f83d373555b9c7dbac65cd25b702" and "d7f52a50374b8384e488e8548c396dbdd797f1f1" have entirely different histories.

6 changed files with 13 additions and 8 deletions

View file

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

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 = "hyprlock-blur"; lock_cmd = "${pkgs.hyprlock-blur}/bin/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" "$mod CTRL, l, exec, ${hyprlock-blur}/bin/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] vesktop" "[workspace 8 silent] discord --disable-gpu-compositing"
"[workspace 9 silent] 1password" "[workspace 9 silent] 1password"
"[workspace 1 silent] zen" "[workspace 1 silent] zen"
]; ];

View file

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

View file

@ -63,9 +63,6 @@ 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"
]; ];
@ -73,7 +70,6 @@ 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)$"
]; ];
}; };
}; };