diff options
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 2 | ||||
| -rw-r--r-- | home/default.nix | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -39,7 +39,7 @@ home = platform: home-manager.lib.homeManagerConfiguration { system = "x86_64-linux"; - configuration = import ./home { inherit self nixpkgs nur; }; + configuration = import ./home { inherit self nixpkgs nixpkgsUnstable nur; }; extraModules = [ platform ]; username = "ale"; diff --git a/home/default.nix b/home/default.nix index f254899..3cf10ab 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,4 +1,4 @@ -{ self, nixpkgs, nur }: +{ self, nixpkgs, nixpkgsUnstable, nur }: { lib, config, pkgs, ... }: with lib; { imports = [ ./unfree.nix ]; @@ -12,6 +12,7 @@ with lib; { nix.registry = { "nixpkgs".flake = nixpkgs; + "nixpkgsUnstable".flake = nixpkgsUnstable; "nur".flake = nur; "system".to = { |
