summaryrefslogtreecommitdiff
path: root/home-manager/modules/apps/desktop/hyprland.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-03-29 23:09:38 +0100
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-03-29 23:09:38 +0100
commit2e37bf1533ace5b2d4d50196300133d9e72d2952 (patch)
tree0c06f4f03599933bb3d0e31620203287ca67c7c0 /home-manager/modules/apps/desktop/hyprland.nix
parent2418424adabca0a1616cca4920221cd67149b65a (diff)
flakes update feat. xfce
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 @@
}
];
};
-}
+
+}