From d830ae9af3ff2c0f435e22adc576e0e70c98ac51 Mon Sep 17 00:00:00 2001 From: Alex Guzman Date: Fri, 9 Aug 2019 13:02:46 -0700 Subject: [PATCH] [roon-server] Use non-deprecated string type --- nixos/modules/services/audio/roon-server.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/audio/roon-server.nix b/nixos/modules/services/audio/roon-server.nix index 6ad5b6b4cbdc..ba995ab93ec4 100644 --- a/nixos/modules/services/audio/roon-server.nix +++ b/nixos/modules/services/audio/roon-server.nix @@ -20,14 +20,14 @@ in { ''; }; user = mkOption { - type = types.string; + type = types.str; default = "roon-server"; description = '' User to run the Roon Server as. ''; }; group = mkOption { - type = types.string; + type = types.str; default = "roon-server"; description = '' Group to run the Roon Server as.