users/services: remove ConditionEnvironment option

This commit is contained in:
Colin 2024-03-21 04:52:58 +00:00
parent 81a6c53c26
commit dee4866737
2 changed files with 0 additions and 7 deletions

View File

@ -69,10 +69,6 @@ let
only once the name is registered will the service be considered "active".
'';
};
unitConfig.ConditionEnvironment = mkOption {
type = types.nullOr types.str;
default = null;
};
};
};
userOptions = {

View File

@ -9,9 +9,6 @@ let
;
serviceConfig = lib.filterAttrs (_: v: v != null) value.serviceConfig;
unitConfig = {
inherit (value.unitConfig)
ConditionEnvironment
;
After = value.after;
Before = value.before;
BindsTo = value.bindsTo;