diff options
author | ene <ene@sils.li> | 2023-02-19 14:02:06 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-19 14:02:06 +0100 |
commit | 539499f590838635d73871a2936f61bb0691daa4 (patch) | |
tree | ca0c205722a9674140ed6d7fa1297010aff98cbc /flake.nix | |
parent | Fix: Import the new configs (diff) | |
download | nixos-config-539499f590838635d73871a2936f61bb0691daa4.tar.gz nixos-config-539499f590838635d73871a2936f61bb0691daa4.zip |
Fix: Remove impure import
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index c23d7e32..c5afc9f8 100644 --- a/flake.nix +++ b/flake.nix @@ -81,7 +81,7 @@ modules = [./hosts/spawn/configuration.nix]; }; - packages."x86_64-linux".default = import ./bootstrap; + packages."x86_64-linux".default = import ./bootstrap {pkgs = nixpkgs.legacyPackages;}; apps."x86_64-linux"."install" = { type = "app"; |