diff --git a/modules/home-manager/templates.nix b/modules/home-manager/templates.nix index 460f274..2a7b391 100644 --- a/modules/home-manager/templates.nix +++ b/modules/home-manager/templates.nix @@ -60,24 +60,6 @@ in File used as the template. When this value is specified, `sops.templates..content` is ignored. ''; }; - restartUnits = lib.mkOption { - type = lib.types.listOf lib.types.str; - default = [ ]; - example = [ "sshd.service" ]; - description = '' - Names of units that should be restarted when the rendered template changes. - This works the same way as . - ''; - }; - reloadUnits = lib.mkOption { - type = lib.types.listOf lib.types.str; - default = [ ]; - example = [ "sshd.service" ]; - description = '' - Names of units that should be reloaded when the rendered template changes. - This works the same way as . - ''; - }; }; } )