nix-conf/system/modules/gaming.nix
2024-12-12 10:57:27 +08:00

11 lines
185 B
Nix

{ config, pkgs, ... }:
{
nix = {
settings = {
warn-dirty = false;
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
};
}