PortableNixOS/settings.nix
2024-10-29 12:59:37 +01:00

18 lines
326 B
Nix

{
nix = {
settings = {
# Enable flakes and new 'nix' command
experimental-features = "nix-command flakes";
# Deduplicate and optimize nix store
auto-optimise-store = true;
sandbox = false;
};
};
nixpkgs.config = {
allowUnfree = true;
};
system.stateVersion = "24.05";
}