Files
cnix/nixos/system/etc/nixpkgs/default.nix
cnst c08012466e ??
2024-08-02 18:48:27 +02:00

14 lines
266 B
Nix

{
nixpkgs = {
overlays = [
(_: prev: {
python312 = prev.python312.override {packageOverrides = _: pysuper: {nose = pysuper.pynose;};};
})
];
config = {
allowUnfree = true;
input-fonts.acceptLicense = true;
};
};
}