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 /lib/home_configurations_as_packages.nix | |
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 'lib/home_configurations_as_packages.nix')
-rw-r--r-- | lib/home_configurations_as_packages.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/home_configurations_as_packages.nix b/lib/home_configurations_as_packages.nix index 2f6aa18..55d3e55 100644 --- a/lib/home_configurations_as_packages.nix +++ b/lib/home_configurations_as_packages.nix @@ -1,7 +1,7 @@ { self, ... } @ inputs: let - pkgs = import inputs.unstable-small { system = "x86_64-linux"; }; + pkgs = import inputs.unstable { system = "x86_64-linux"; }; inherit (pkgs.lib) genAttrs mapAttrs'; |