diff --git a/lagarto-ox.nix b/lagarto-ox.nix index 6f71896..a1c4033 100644 --- a/lagarto-ox.nix +++ b/lagarto-ox.nix @@ -39,7 +39,7 @@ install -m 0755 -d /home ${pkgs.perl.withPackages (p: [ p.FileSlurp p.JSON ])}/bin/perl \ - -w ${./update-users-groups.pl} ${spec} + -w ${./patches/update-users-groups.pl} ${spec} ''; } else "" # keep around for backwards compatibility ); @@ -51,7 +51,7 @@ system.build.bootStage2 = let useHostResolvConf = config.networking.resolvconf.enable && config.networking.useHostResolvConf; bootStage2 = pkgs.substituteAll { - src = ./stage-2-init.sh; + src = ./patches/stage-2-init.sh; shellDebug = "${pkgs.bashInteractive}/bin/bash"; shell = "${pkgs.bash}/bin/bash"; inherit (config.boot) readOnlyNixStore systemdExecutable extraSystemdUnitPaths; diff --git a/stage-2-init.sh b/patches/stage-2-init.sh similarity index 100% rename from stage-2-init.sh rename to patches/stage-2-init.sh diff --git a/update-users-groups.pl b/patches/update-users-groups.pl similarity index 100% rename from update-users-groups.pl rename to patches/update-users-groups.pl