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
+304 -303
View File
File diff suppressed because it is too large Load Diff
+8 -7
View File
@@ -666,13 +666,6 @@ The inputs for my system's configuration are very simple
};
};
<<flake-outputs>>
# 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
'';
}
#+end_src
@@ -709,6 +702,14 @@ We also add a devshell that makes editing this repository easier in emacs.
<<flake-config-module>>
<<flake-home-module>>
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 = {
+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
'';
}