retronix/common-config/nix-conf.nix

16 lines
224 B
Nix
Raw Permalink Normal View History

2024-01-18 18:55:22 +01:00
{
lib,
pkgs,
config,
metadata,
nodes,
name,
...
}: {
nix.settings = {
trusted-users = ["root" "@wheel"];
auto-optimise-store = true;
extra-experimental-features = ["nix-command" "flakes"];
};
}