diff --git a/modules/ghidra-server/default.nix b/modules/ghidra-server/default.nix index f2cf65a..d97b075 100644 --- a/modules/ghidra-server/default.nix +++ b/modules/ghidra-server/default.nix @@ -20,23 +20,23 @@ in { }; basePort = mkOption { default = 13100; - description = mdDoc "Ghidra server base port - the server will use 3 consecutive TCP ports starting from the provided port number."; + description = "Ghidra server base port - the server will use 3 consecutive TCP ports starting from the provided port number."; type = types.port; }; directory = mkOption { default = "/var/lib/ghidra-server"; - description = mdDoc "Directory for Ghidra server data."; + description = "Directory for Ghidra server data."; type = types.str; }; user = mkOption { type = types.str; default = "ghidra"; - description = mdDoc "User account under which ghidra server runs."; + description = "User account under which ghidra server runs."; }; group = mkOption { type = types.str; default = "ghidra"; - description = mdDoc "Group account under which ghidra server runs."; + description = "Group account under which ghidra server runs."; }; };