We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent b2a14ee commit 4698012Copy full SHA for 4698012
nixos/modules/system/boot/systemd-nspawn.nix
@@ -14,11 +14,12 @@ let
14
(assertOnlyFields [
15
"Boot" "ProcessTwo" "Parameters" "Environment" "User" "WorkingDirectory"
16
"Capability" "DropCapability" "KillSignal" "Personality" "MachineId"
17
- "PrivateUsers"
+ "PrivateUsers" "NotifyReady"
18
])
19
(assertValueOneOf "Boot" boolValues)
20
(assertValueOneOf "ProcessTwo" boolValues)
21
(assertValueOneOf "PrivateUsers" (boolValues ++ [ "pick" ]))
22
+ (assertValueOneOf "NotifyReady")
23
];
24
25
checkFiles = checkUnitConfig "Files" [
@@ -82,7 +83,7 @@ let
82
83
84
};
85
- instanceToUnit = name: def:
86
+ instanceToUnit = name: def:
87
{ text = ''
88
[Exec]
89
${attrsToSection def.execConfig}
0 commit comments