Let's try this instead?

This commit is contained in:
Lillian Violet 2024-01-19 01:47:09 +01:00
parent c381493ac7
commit 0743958f86

View file

@ -16,12 +16,11 @@
# }); # });
}; };
# When applied, the unstable nixpkgs set (declared in the flake inputs) will # When applied, the stable nixpkgs set (declared in the flake inputs) will
# be accessible through 'pkgs.unstable' # be accessible through 'pkgs.stable'
stable-packages = final: _prev: { pkg-sets = (
stable = import inputs.nixpkgs-stable { final: prev: {
system = final.system; stable = import inputs.nixos-stable {system = final.system;};
config.allowUnfree = true; }
}; );
};
} }