marleyos/modules/home/base/nix/default.nix

21 lines
338 B
Nix

{ _ }:
{
config = {
nix = {
# Enable flakes.
settings.experimental-features = [
"nix-command"
"flakes"
];
# Disable that annoying "git tree is dirty" warning.
extraOptions = ''
warn-dirty = false
'';
# Garbage collection.
gc.automatic = true;
};
};
}