Let's try this instead?

This commit is contained in:
Lillian Violet 2024-01-19 01:47:09 +01:00
parent 6af0025744
commit eda72f9018

View file

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