diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-05-15 20:28:44 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-05-15 20:28:44 -0600 |
| commit | d7dfe862388af68ed2cda4a420d5a8e60761f68f (patch) | |
| tree | 85c7434126bf77bd05af8056c0cacd0c86a0916e | |
| parent | 5988e76ae5b892ad63621789b80c1bfd69347469 (diff) | |
home: add nixpkgsUnstable to registry
| -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 = { |
