rebuilding minimised nix files
This commit is contained in:
+304
-303
File diff suppressed because it is too large
Load Diff
@@ -666,13 +666,6 @@ The inputs for my system's configuration are very simple
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
<<flake-outputs>>
|
<<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
|
#+end_src
|
||||||
|
|
||||||
@@ -709,6 +702,14 @@ We also add a devshell that makes editing this repository easier in emacs.
|
|||||||
<<flake-config-module>>
|
<<flake-config-module>>
|
||||||
<<flake-home-module>>
|
<<flake-home-module>>
|
||||||
catppuccin.nixosModules.catppuccin # theme
|
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 = {
|
specialArgs = {
|
||||||
|
|||||||
@@ -66,6 +66,14 @@ in
|
|||||||
}
|
}
|
||||||
|
|
||||||
catppuccin.nixosModules.catppuccin # theme
|
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 = {
|
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
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user