nixos/profiles/common/nix.nix
2025-09-25 23:28:10 +02:00

13 lines
167 B
Nix

{ ... }:
{
nix = {
settings = {
experimental-features = [
"flakes"
"nix-command"
];
auto-optimise-store = true;
};
};
}