NixOS-Config/modules/system/settings/nix/default.nix
2024-11-19 13:20:34 -05:00

15 lines
204 B
Nix

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