mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-06-29 13:26:23 +02:00
12 lines
239 B
Nix
12 lines
239 B
Nix
{
|
|
lib,
|
|
outputs,
|
|
}:
|
|
lib.genAttrs (builtins.attrNames outputs.nixosConfigurations) (_: {
|
|
autoAllocateUids = true;
|
|
hasUidRange = true;
|
|
hasAutoAllocateUidsFeature = true;
|
|
hasCgroupsFeature = true;
|
|
hasDevNetSandboxPath = true;
|
|
})
|