2024-11-16 21:42:03 -08:00
|
|
|
_:
|
2024-11-15 18:39:38 -08:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|