6a3ff12527
- Restructure - Add sops+age
15 lines
243 B
Nix
15 lines
243 B
Nix
{ config, ... }:
|
|
{
|
|
nix.settings.experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
];
|
|
|
|
nix.gc = {
|
|
automatic = true;
|
|
dates = "daily";
|
|
options = "--delete-older-than +5";
|
|
};
|
|
nix.settings.auto-optimise-store = true;
|
|
}
|