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
+4 -4
View File
@@ -24,18 +24,18 @@ in
};
# Copy repo configs/scripts into ~/.config (als echte bestanden)
home.file."${targetRel}" = {
source = repoConf;
source = lib.mkForce repoConf;
};
home.file."${targetOverflowRel}" = {
source = repoOverflowScript;
source = lib.mkForce repoOverflowScript;
executable = true;
};
home.file."${targetPerMonitor}" = {
source = repoPerMonitorScript;
source = lib.mkForce repoPerMonitorScript;
executable = true;
};
home.file."${targetSwitchScript}" = {
source = repoSwitchScript;
source = lib.mkForce repoSwitchScript;
executable = true;
};
}