16 lines
176 B
Nix
16 lines
176 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
config = {
|
|
nix = {
|
|
settings.sandbox = true;
|
|
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
};
|
|
};
|
|
}
|