17 lines
275 B
Nix
17 lines
275 B
Nix
![]() |
{
|
||
|
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
|
||
|
};
|
||
|
};
|
||
|
}
|