nix-da/modules/nix/default.nix
Nydragon d89eb790b1
init: flakeify the majority of my config
Remaining point of focus is making the sway config working properly
2024-05-13 15:34:22 +09:00

10 lines
221 B
Nix

{ pkgs, config, lib, ... }: {
nix = {
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 20d";
};
settings.experimental-features = [ "nix-command" "flakes" ];
};
}