diff options
author | Soispha <soispha@vhack.eu> | 2023-04-10 13:01:08 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:30:11 +0200 |
commit | 832b796d1e8730aa0ce16c23a4d6f0b6755a59df (patch) | |
tree | 0750ca228b003b1f39f46855c2d9d2b8d88d45d9 /flake.nix | |
parent | Fix(system/services/nix): Use correct values (diff) | |
download | nixos-config-832b796d1e8730aa0ce16c23a4d6f0b6755a59df.tar.gz nixos-config-832b796d1e8730aa0ce16c23a4d6f0b6755a59df.zip |
Fix(system/nixpkgs): Configure at a system level
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index 466b7d01..d1837b7f 100644 --- a/flake.nix +++ b/flake.nix @@ -88,7 +88,7 @@ }: let sysLib = import ./lib {inherit pkgs shell-library;}; system = "x86_64-linux"; - pkgs = nixpkgs.legacyPackages.${system}; + pkgs = import nixpkgs (import ./system/nixpkgs {inherit (nixpkgs) lib; inherit system;}); in { nixosConfigurations = import ./flake/nixosConfigurations { inherit |