From 73e7708bee0b468494480533445a2136a83bb121 Mon Sep 17 00:00:00 2001 From: Marcel Date: Tue, 25 Jun 2024 22:30:44 +0200 Subject: [PATCH] nixos/hound: cleanup services.hound.enable --- nixos/modules/services/search/hound.nix | 8 +------- 1 file changed, 1 insertion(+), 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" { };