config/common.nix

20 lines
344 B
Nix
Raw Normal View History

2022-05-15 17:31:45 +02:00
# Holds common settings for all systems.
{ ... }: {
nix = {
2022-05-23 10:50:43 +02:00
optimise.automatic = true;
extraOptions = ''
experimental-features = nix-command flakes
'';
2022-05-15 17:31:45 +02:00
};
2022-05-23 10:50:43 +02:00
nixpkgs = {
config = { allowUnfree = true; };
overlays = [ (import ./overlays) ];
};
2022-05-15 17:31:45 +02:00
2022-05-23 10:50:43 +02:00
boot.cleanTmpDir = true;
2022-05-15 17:31:45 +02:00
}