Recreated nix files

This commit is contained in:
2026-03-03 11:20:07 +01:00
parent ef2b634730
commit 1b1f2100c1
3 changed files with 335 additions and 332 deletions
+12 -11
View File
@@ -76,17 +76,18 @@ in
catppuccin.nixosModules.catppuccin # theme
({ lib, config, pkgs, ... }: {
systemd.user.services.endScript = lib.mkIf (lib.fileExists ./assets/scripts/end_script.sh) {
description = "Run end script after Home Manager";
wantedBy = [ "multi-user.target" ];
after = [ "home-manager-activate.service" ];
serviceConfig.Type = "oneshot";
script = ''
${./assets/scripts/end_script.sh}
'';
};
})
# end_script as a systemd service
({ lib, config, pkgs, ... }: {
systemd.user.services.endScript = lib.mkIf (builtins.pathExists ./assets/scripts/end_script.sh) {
description = "Run end script after Home Manager";
wantedBy = [ "multi-user.target" ];
after = [ "home-manager-activate.service" ];
serviceConfig.Type = "oneshot";
script = ''
${./assets/scripts/end_script.sh}
'';
};
})
];
specialArgs = {