config/common.nix

20 lines
344 B
Nix

# Holds common settings for all systems.
{ ... }: {
nix = {
optimise.automatic = true;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
nixpkgs = {
config = { allowUnfree = true; };
overlays = [ (import ./overlays) ];
};
boot.cleanTmpDir = true;
}