diff options
author | Marcel | 2024-06-25 22:30:44 +0200 |
---|---|---|
committer | Marcel | 2024-06-27 21:56:18 +0200 |
commit | 73e7708bee0b468494480533445a2136a83bb121 (patch) | |
tree | de1284b4864828d3fcea82da5896c2d3b5529bcc | |
parent | 81b8f02ce40360319b88bc665445ee3c6c1b27fa (diff) |
nixos/hound: cleanup services.hound.enable
-rw-r--r-- | nixos/modules/services/search/hound.nix | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/nixos/modules/services/search/hound.nix b/nixos/modules/services/search/hound.nix index 059f514234eb..0a6abc61c134 100644 --- a/nixos/modules/services/search/hound.nix +++ b/nixos/modules/services/search/hound.nix @@ -11,13 +11,7 @@ in { options = { services.hound = { - enable = mkOption { - type = types.bool; - default = false; - description = '' - Whether to enable the hound code search daemon. - ''; - }; + enable = mkEnableOption "hound"; package = mkPackageOption pkgs "hound" { }; |