summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-05-15 20:28:44 -0600
committerAlejandro Soto <alejandro@34project.org>2022-05-15 20:28:44 -0600
commitd7dfe862388af68ed2cda4a420d5a8e60761f68f (patch)
tree85c7434126bf77bd05af8056c0cacd0c86a0916e
parent5988e76ae5b892ad63621789b80c1bfd69347469 (diff)
home: add nixpkgsUnstable to registry
Diffstat (limited to '')
-rw-r--r--flake.nix2
-rw-r--r--home/default.nix3
2 files changed, 3 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 8f621f0..c47f9e4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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 = {