17 lines
275 B
Nix
Raw Normal View History

2025-03-27 15:21:42 +01:00
{
imports = [
./configuration.nix
./services
];
nix = {
settings = {
experimental-features = "nix-command flakes";
trusted-users = [
"root"
"m3tam3re"
]; # Set users that are allowed to use the flake command
};
};
}