config/common.nix

17 lines
241 B
Nix
Raw Normal View History

2022-05-15 17:31:45 +02:00
# Holds common settings for all systems.
{ ... }: {
nix = {
optimise.automatic = true;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
nixpkgs.config.allowUnfree = true;
boot.cleanTmpDir = true;
}