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

19 lines
242 B
Nix
Raw Normal View History

{ ... }:
{
2024-12-01 20:10:31 -05:00
imports = [
./autoupgrade
];
nix = {
settings = {
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
};
};
nixpkgs.config.allowUnfree = true;
}