diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-05-12 13:43:15 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-05-12 13:43:15 -0600 |
| commit | 5988e76ae5b892ad63621789b80c1bfd69347469 (patch) | |
| tree | d2dc97ac5e7669a2115fbc4dc8527ab2db5b985a | |
| parent | 41a805eabbe36e12abff6e0a5492625200d62eb9 (diff) | |
platform: add nixpkgs unstable
| -rw-r--r-- | flake.nix | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,7 @@ { inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-21.11"; + nixpkgsUnstable.url = "github:nixos/nixpkgs"; home-manager = { # "/release-21.11" para stable @@ -11,7 +12,7 @@ nur.url = "github:nix-community/NUR"; }; - outputs = { self, nixpkgs, home-manager, nur, ... }: with nixpkgs.lib; let + outputs = { self, nixpkgs, nixpkgsUnstable, home-manager, nur, ... }: with nixpkgs.lib; let util = import ./util; inherit (util nixpkgs.lib) importAll; @@ -24,6 +25,7 @@ overlay = self: super: { local = pkgSet super; + unstable = import nixpkgsUnstable { inherit (super) config system; }; }; nixosConfigurations = let |
