nixos-config/modules/common/nix.nix

12 lines
215 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 = {
allowUnfree = true;
allowUnsupportedSystem = true;
};
}