cfg/mod/nix-configuration.nix
2025-05-14 03:22:38 +02:00

22 lines
291 B
Nix

{
lib,
inputs,
config,
...
}:
{
config = {
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
];
trusted-users = [
"root"
];
auto-optimise-store = true;
};
nixpkgs.config.allowUnfree = false;
};
}