users: switch to systemd services by default

This commit is contained in:
2024-09-28 03:38:17 +00:00
parent edb665abd0
commit d073250032

View File

@@ -172,7 +172,7 @@ let
}; };
serviceManager = mkOption { serviceManager = mkOption {
type = types.nullOr (types.enum [ "s6" "systemd" ]); type = types.nullOr (types.enum [ "s6" "systemd" ]);
default = "s6"; default = "systemd";
description = '' description = ''
which service manager to plumb `services` into. which service manager to plumb `services` into.
''; '';