nixos-config/modules/common/nix.nix
2025-09-04 10:21:17 +02:00

11 lines
215 B
Nix

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