From f8236681beb5b93497d2127393734fc5994697fd Mon Sep 17 00:00:00 2001 From: Scriptkiddi Date: Tue, 26 Jan 2021 20:56:21 +0100 Subject: [PATCH] nixos/felix: add types --- nixos/modules/services/misc/felix.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/misc/felix.nix b/nixos/modules/services/misc/felix.nix index 21740c8c0b7..8d438bb9eb1 100644 --- a/nixos/modules/services/misc/felix.nix +++ b/nixos/modules/services/misc/felix.nix @@ -27,11 +27,13 @@ in }; user = mkOption { + type = types.str; default = "osgi"; description = "User account under which Apache Felix runs."; }; group = mkOption { + type = types.str; default = "osgi"; description = "Group account under which Apache Felix runs."; };