diff options
author | ene <ene@sils.li> | 2023-02-19 14:30:18 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-19 14:30:18 +0100 |
commit | 0371f83910490b8105cfee0572842db8179bca8c (patch) | |
tree | dd92b0378449d05adcdabd02985327220b948705 | |
parent | Fix: Further improve the secret handling (diff) | |
download | nixos-config-0371f83910490b8105cfee0572842db8179bca8c.tar.gz nixos-config-0371f83910490b8105cfee0572842db8179bca8c.zip |
Fix(bootstrap): Finish the nix side of things
Diffstat (limited to '')
-rw-r--r-- | bootstrap/default.nix | 2 | ||||
-rw-r--r-- | flake.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/default.nix b/bootstrap/default.nix index 2a11c20a..29dda5c0 100644 --- a/bootstrap/default.nix +++ b/bootstrap/default.nix @@ -1,2 +1,2 @@ {pkgs, ...}: -pkgs.writeShellScriptBin "install" builtins.readFile ./install.sh +pkgs.writeShellScriptBin "install" (builtins.readFile ./install) diff --git a/flake.nix b/flake.nix index c5afc9f8..f2fc62d2 100644 --- a/flake.nix +++ b/flake.nix @@ -81,7 +81,7 @@ modules = [./hosts/spawn/configuration.nix]; }; - packages."x86_64-linux".default = import ./bootstrap {pkgs = nixpkgs.legacyPackages;}; + packages."x86_64-linux".default = import ./bootstrap {pkgs = nixpkgs.legacyPackages.x86_64-linux;}; apps."x86_64-linux"."install" = { type = "app"; |