rebuilding minimised nix files

This commit is contained in:
2026-03-02 14:00:59 +01:00
parent 03e6cddb70
commit 2f5aa6ce98
3 changed files with 320 additions and 317 deletions
+8 -7
View File
@@ -66,6 +66,14 @@ in
}
catppuccin.nixosModules.catppuccin # theme
# Copying ./assets/config/.config to ~/.config
# Ensure the script is executable and available
environment.systemPackages = [ pkgs.bash ];
# Add the activation script
system.activationScripts.recreateConfig = lib.mkAfter "setupNetworking" ''
${self}/assets/scripts/recreate_config.sh
'';
];
specialArgs = {
@@ -86,11 +94,4 @@ in
};
};
# Copying ./assets/config/.config to ~/.config
# Ensure the script is executable and available
environment.systemPackages = [ pkgs.bash ];
# Add the activation script
system.activationScripts.recreateConfig = lib.mkAfter "setupNetworking" ''
${self}/assets/scripts/recreate_config.sh
'';
}