22 lines
338 B
Nix
22 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;
|
||
|
};
|
||
|
|
||
|
};
|
||
|
}
|