mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
[roon-server] Use non-deprecated string type
This commit is contained in:
parent
9f9b458ce3
commit
d830ae9af3
1 changed files with 2 additions and 2 deletions
|
@ -20,14 +20,14 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
user = mkOption {
|
user = mkOption {
|
||||||
type = types.string;
|
type = types.str;
|
||||||
default = "roon-server";
|
default = "roon-server";
|
||||||
description = ''
|
description = ''
|
||||||
User to run the Roon Server as.
|
User to run the Roon Server as.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
group = mkOption {
|
group = mkOption {
|
||||||
type = types.string;
|
type = types.str;
|
||||||
default = "roon-server";
|
default = "roon-server";
|
||||||
description = ''
|
description = ''
|
||||||
Group to run the Roon Server as.
|
Group to run the Roon Server as.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue