From 6054aa2bc1fe0af0d2bf8dfac3a61ef6b8b0bb4a Mon Sep 17 00:00:00 2001 From: Fritz Otlinghaus Date: Sun, 24 Jan 2021 13:14:21 +0100 Subject: [PATCH] nixos/amuled: add types --- nixos/modules/services/networking/amuled.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/networking/amuled.nix b/nixos/modules/services/networking/amuled.nix index 1128ee2c3e61..c843d8921931 100644 --- a/nixos/modules/services/networking/amuled.nix +++ b/nixos/modules/services/networking/amuled.nix @@ -24,6 +24,7 @@ in }; dataDir = mkOption { + type = types.str; default = ''/home/${user}/''; description = '' The directory holding configuration, incoming and temporary files. @@ -31,6 +32,7 @@ in }; user = mkOption { + type = types.nullOr types.str; default = null; description = '' The user the AMule daemon should run as.