NixOS-Config/modules/system/settings/nix/default.nix

15 lines
204 B
Nix
Raw Normal View History

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