10 lines
193 B
Nix
10 lines
193 B
Nix
{ super, ... }:
|
|
|
|
super.systemd.override {
|
|
withAcl = false;
|
|
withApparmor = false;
|
|
withDocumentation = false;
|
|
withRemote = false;
|
|
withShellCompletions = false;
|
|
withVmspawn = false;
|
|
}
|