nixos-config/modules/common/nix.nix

12 lines
225 B
Nix
Raw Normal View History

2025-09-04 10:21:17 +02:00
{config, ...}: {
nix.settings = {
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes"];
};
nixpkgs.config = {
2025-10-05 08:20:57 +02:00
# allowUnfree = true;
# allowUnsupportedSystem = true;
2025-09-04 10:21:17 +02:00
};
}