about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMarcel2024-06-25 22:30:44 +0200
committerMarcel2024-06-27 21:56:18 +0200
commit73e7708bee0b468494480533445a2136a83bb121 (patch)
treede1284b4864828d3fcea82da5896c2d3b5529bcc /nixos
parent81b8f02ce40360319b88bc665445ee3c6c1b27fa (diff)
nixos/hound: cleanup services.hound.enable
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/search/hound.nix8
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" { };