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

18 lines
226 B
Nix

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