Compare commits

..

2 Commits

Author SHA1 Message Date
henrov 03a6cddc7c rebuilding minimised nix files 2026-03-02 19:48:49 +01:00
henrov b556e67b5d { config, pkgs, lib, flakeRoot, ... }:
{
home.packages = [ pkgs.bash ];
home.activation = {
recreateConfig = {
text = ''
        #!${pkgs.bash}/bin/bash
        "${flakeRoot}/assets/scripts/recreate_config.sh"
        '';
        deps = [ pkgs.bash ];
        };
        };
        }
2026-03-02 19:48:41 +01:00
3 changed files with 304 additions and 299 deletions
+299 -297
View File
File diff suppressed because it is too large Load Diff
+3 -1
View File
@@ -2913,13 +2913,15 @@ This makes sure all ./assets/copy_stuff ends up in the right folder
home.activation = { home.activation = {
recreateConfig = { recreateConfig = {
text = '' text = ''
${pkgs.bash}/bin/bash "${flakeRoot}/assets/scripts/recreate_config.sh" #!${pkgs.bash}/bin/bash
"${flakeRoot}/assets/scripts/recreate_config.sh"
''; '';
deps = [ pkgs.bash ]; deps = [ pkgs.bash ];
}; };
}; };
} }
#+end_src #+end_src
* README Utils * README Utils
+2 -1
View File
@@ -4,7 +4,8 @@
home.activation = { home.activation = {
recreateConfig = { recreateConfig = {
text = '' text = ''
${pkgs.bash}/bin/bash "${flakeRoot}/assets/scripts/recreate_config.sh" #!${pkgs.bash}/bin/bash
"${flakeRoot}/assets/scripts/recreate_config.sh"
''; '';
deps = [ pkgs.bash ]; deps = [ pkgs.bash ];
}; };