16 lines
241 B
Nix
16 lines
241 B
Nix
# Holds common settings for all systems.
|
|
|
|
{ ... }: {
|
|
|
|
nix = {
|
|
optimise.automatic = true;
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
boot.cleanTmpDir = true;
|
|
|
|
}
|