diff options
author | sefidel <contact@sefidel.net> | 2022-02-05 13:46:06 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-02-05 13:46:15 +0900 |
commit | 9cff9ce8a4626bb83422e90b55e93c80586ac817 (patch) | |
tree | 2429c8c11308032d9bca2b5b2e145d1d9c4f9b92 /home | |
parent | fff4608bf194f4e3a99c41666881a68cbe41280a (diff) | |
download | nixrc-9cff9ce8a4626bb83422e90b55e93c80586ac817.tar.gz nixrc-9cff9ce8a4626bb83422e90b55e93c80586ac817.zip |
feat(pkgs)!: unstable-small -> unstable
* Changes default branch to unstable * nixpkgsUnstable (nixos-unstable) -> nixpkgs * nixpkgs (nixos-unstable-small) -> nixpkgsSmall
Diffstat (limited to 'home')
-rw-r--r-- | home/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/default.nix b/home/default.nix index 2ba3707..53dc719 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,11 +1,11 @@ -{ self, unstable-small, ... } @ inputs: +{ self, unstable, ... } @ inputs: { "boopy@alpha" = self.lib.mkHome { username = "boopy"; hostname = "alpha"; system = "x86_64-linux"; - pkgs = import unstable-small { system = "x86_64-linux"; overlays = with inputs; [ chaotic-nixpkgs.overlay ]; }; + pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ chaotic-nixpkgs.overlay ]; }; extraModules = [ ./profiles/populate.nix |