15 lines
165 B
Nix
15 lines
165 B
Nix
|
|
{ ... }:
|
||
|
|
{
|
||
|
|
nix.settings = {
|
||
|
|
experimental-features = [
|
||
|
|
"nix-command"
|
||
|
|
"flakes"
|
||
|
|
];
|
||
|
|
|
||
|
|
trusted-users = [
|
||
|
|
"root"
|
||
|
|
"lucy"
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|