nixos-config/modules/system/settings/nix/default.nix

10 lines
148 B
Nix
Raw Permalink Normal View History

{ ... }:
{
imports = [ ./gc ];
2024-12-01 20:10:31 -05:00
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
}