implementing home.file instead of xdg.config

This commit is contained in:
2026-03-01 21:03:54 +01:00
parent 9a87e37114
commit 1786fbd39e
11 changed files with 326 additions and 340 deletions
+2 -3
View File
@@ -10,10 +10,10 @@ in
home.packages = [ pkgs.hyprshell ];
# Gebruik home.file voor echte bestanden (geen symlinks)
home.file.".config/hyprshell/config.ron" = {
source = cfgRon;
source = lib.mkForce cfgRon;
};
home.file.".config/hyprshell/styles.css" = {
source = cssFile;
source = lib.mkForce cssFile;
};
# Autostart (systemd user service)
systemd.user.services.hyprshell = {
@@ -31,4 +31,3 @@ in
WantedBy = [ "graphical-session.target" ];
};
};
}