diff options
author | sefidel <contact@sefidel.net> | 2022-01-22 22:17:22 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-01-22 22:17:22 +0900 |
commit | 220dde08b73ed0091fed2b5b5cefd59708366376 (patch) | |
tree | ae5ca3eb0bf264840fa433e34736a331682751c5 /home | |
parent | 059b86f0e04f52b38331ab58b32092ecf6ef616c (diff) | |
download | nixrc-220dde08b73ed0091fed2b5b5cefd59708366376.tar.gz nixrc-220dde08b73ed0091fed2b5b5cefd59708366376.zip |
flakes: pin registry and nix path
Diffstat (limited to 'home')
-rw-r--r-- | home/alpha/boopy.nix | 2 | ||||
-rw-r--r-- | home/default.nix | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/home/alpha/boopy.nix b/home/alpha/boopy.nix index 237eb11..d301409 100644 --- a/home/alpha/boopy.nix +++ b/home/alpha/boopy.nix @@ -1,4 +1,4 @@ -{ pkgs, nixpkgs, self, ... }: +{ pkgs, ... }: { config = { diff --git a/home/default.nix b/home/default.nix index 0b213ae..f9cb94a 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,11 +1,11 @@ -{ self, nixpkgs, ... } @ inputs: +{ self, unstable-small, ... } @ inputs: { "boopy@alpha" = self.lib.mkHome { username = "boopy"; hostname = "alpha"; system = "x86_64-linux"; - pkgs = import nixpkgs { system = "x86_64-linux"; overlays = with inputs; [ chaotic-nixpkgs.overlay ]; }; + pkgs = import unstable-small { system = "x86_64-linux"; overlays = with inputs; [ chaotic-nixpkgs.overlay ]; }; extraModules = [ ./profiles |