nixos-config/modules/common/nix.nix
2025-10-05 08:20:57 +02:00

11 lines
225 B
Nix

{config, ...}: {
nix.settings = {
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes"];
};
nixpkgs.config = {
# allowUnfree = true;
# allowUnsupportedSystem = true;
};
}