dotfiles/.config/nix/lib/mkSystem.nix

13 lines
227 B
Nix

system: nixpkgs: extraOverlays:
{
system = system;
pkgs = import nixpkgs {
inherit system;
overlays =
[
(import ../overlays/python.nix)
] ++ extraOverlays;
config.allowUnfree = true;
};
}