diff options
Diffstat (limited to '')
| -rw-r--r-- | home-manager/modules/apps/desktop/hyprland.nix (renamed from home-manager/hyprland.nix) | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/home-manager/hyprland.nix b/home-manager/modules/apps/desktop/hyprland.nix index 3b1e4fa..5142f40 100644 --- a/home-manager/hyprland.nix +++ b/home-manager/modules/apps/desktop/hyprland.nix @@ -1,4 +1,4 @@ -{config, pkgs, ...}: +{cfg, lib, ...}: { # Hyprland wayland.windowManager.hyprland = { @@ -15,7 +15,11 @@ "blueman-applet &" "hyprctl setcursor Catppuccin-Mocha-Dark-Cursors 24" "kdeconnect-indicator &" - ] ++ ["uwsm finalize QT_QPA_PLATFORM QT_PLUGIN_PATH"]; + ] ++ [ + "systemctl --user start hypridle.service" + "systemctl --user start hyprpaper.service" + "uwsm finalize QT_QPA_PLATFORM QT_PLUGIN_PATH" + ]; general = { gaps_in = 3; gaps_out = 8; @@ -233,4 +237,5 @@ } ]; }; -} + +} |
