summary refs log tree commit diff
path: root/nixos/modules/services/audio/roon-server.nix
diff options
context:
space:
mode:
authorAlex Guzman <alex@guzman.io>2019-08-09 13:02:46 -0700
committerAlex Guzman <alex@guzman.io>2019-08-09 13:02:46 -0700
commitd830ae9af3ff2c0f435e22adc576e0e70c98ac51 (patch)
treef7ea0f01c937072a87ad4c2a28591c2eb71621a6 /nixos/modules/services/audio/roon-server.nix
parent9f9b458ce39e1e6fecb4dca2f659db8752d91e8a (diff)
downloadnixpkgs-d830ae9af3ff2c0f435e22adc576e0e70c98ac51.tar
nixpkgs-d830ae9af3ff2c0f435e22adc576e0e70c98ac51.tar.gz
nixpkgs-d830ae9af3ff2c0f435e22adc576e0e70c98ac51.tar.bz2
nixpkgs-d830ae9af3ff2c0f435e22adc576e0e70c98ac51.tar.lz
nixpkgs-d830ae9af3ff2c0f435e22adc576e0e70c98ac51.tar.xz
nixpkgs-d830ae9af3ff2c0f435e22adc576e0e70c98ac51.tar.zst
nixpkgs-d830ae9af3ff2c0f435e22adc576e0e70c98ac51.zip
[roon-server] Use non-deprecated string type
Diffstat (limited to 'nixos/modules/services/audio/roon-server.nix')
-rw-r--r--nixos/modules/services/audio/roon-server.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/audio/roon-server.nix b/nixos/modules/services/audio/roon-server.nix
index 6ad5b6b4cbd..ba995ab93ec 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.