diff options
Diffstat (limited to 'system/services/nix/default.nix')
-rw-r--r-- | system/services/nix/default.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/system/services/nix/default.nix b/system/services/nix/default.nix index 27ec7bd6..4549a8df 100644 --- a/system/services/nix/default.nix +++ b/system/services/nix/default.nix @@ -3,10 +3,12 @@ config, lib, pkgs, - nixpkgs, + nixpkgs-as-input, templates, ... -}: { +}: let + nixpkgs = nixpkgs-as-input; +in { nix = { package = pkgs.nixUnstable; |