PortableNixOS/settings.nix
Johannes Hendrik Gerard van der Weide 5979630e28 Initial commit :3
2024-10-03 14:30:17 +02:00

17 lines
303 B
Nix

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