nixos/services.sickbeard: remove with lib;
This commit is contained in:
parent
1b4c241f80
commit
e593a4c094
@ -1,7 +1,4 @@
|
|||||||
{ config, lib, options, pkgs, ... }:
|
{ config, lib, options, pkgs, ... }:
|
||||||
|
|
||||||
with lib;
|
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
name = "sickbeard";
|
name = "sickbeard";
|
||||||
@ -17,41 +14,41 @@ in
|
|||||||
|
|
||||||
options = {
|
options = {
|
||||||
services.sickbeard = {
|
services.sickbeard = {
|
||||||
enable = mkOption {
|
enable = lib.mkOption {
|
||||||
type = types.bool;
|
type = lib.types.bool;
|
||||||
default = false;
|
default = false;
|
||||||
description = "Whether to enable the sickbeard server.";
|
description = "Whether to enable the sickbeard server.";
|
||||||
};
|
};
|
||||||
package = mkPackageOption pkgs "sickbeard" {
|
package = lib.mkPackageOption pkgs "sickbeard" {
|
||||||
example = "sickrage";
|
example = "sickrage";
|
||||||
extraDescription = ''
|
extraDescription = ''
|
||||||
Enable `pkgs.sickrage` or `pkgs.sickgear`
|
Enable `pkgs.sickrage` or `pkgs.sickgear`
|
||||||
as an alternative to SickBeard
|
as an alternative to SickBeard
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
dataDir = mkOption {
|
dataDir = lib.mkOption {
|
||||||
type = types.path;
|
type = lib.types.path;
|
||||||
default = "/var/lib/${name}";
|
default = "/var/lib/${name}";
|
||||||
description = "Path where to store data files.";
|
description = "Path where to store data files.";
|
||||||
};
|
};
|
||||||
configFile = mkOption {
|
configFile = lib.mkOption {
|
||||||
type = types.path;
|
type = lib.types.path;
|
||||||
default = "${cfg.dataDir}/config.ini";
|
default = "${cfg.dataDir}/config.ini";
|
||||||
defaultText = literalExpression ''"''${config.${opt.dataDir}}/config.ini"'';
|
defaultText = lib.literalExpression ''"''${config.${opt.dataDir}}/config.ini"'';
|
||||||
description = "Path to config file.";
|
description = "Path to config file.";
|
||||||
};
|
};
|
||||||
port = mkOption {
|
port = lib.mkOption {
|
||||||
type = types.ints.u16;
|
type = lib.types.ints.u16;
|
||||||
default = 8081;
|
default = 8081;
|
||||||
description = "Port to bind to.";
|
description = "Port to bind to.";
|
||||||
};
|
};
|
||||||
user = mkOption {
|
user = lib.mkOption {
|
||||||
type = types.str;
|
type = lib.types.str;
|
||||||
default = name;
|
default = name;
|
||||||
description = "User to run the service as";
|
description = "User to run the service as";
|
||||||
};
|
};
|
||||||
group = mkOption {
|
group = lib.mkOption {
|
||||||
type = types.str;
|
type = lib.types.str;
|
||||||
default = name;
|
default = name;
|
||||||
description = "Group to run the service as";
|
description = "Group to run the service as";
|
||||||
};
|
};
|
||||||
@ -61,9 +58,9 @@ in
|
|||||||
|
|
||||||
###### implementation
|
###### implementation
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
|
|
||||||
users.users = optionalAttrs (cfg.user == name) {
|
users.users = lib.optionalAttrs (cfg.user == name) {
|
||||||
${name} = {
|
${name} = {
|
||||||
uid = config.ids.uids.sickbeard;
|
uid = config.ids.uids.sickbeard;
|
||||||
group = cfg.group;
|
group = cfg.group;
|
||||||
@ -73,7 +70,7 @@ in
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
users.groups = optionalAttrs (cfg.group == name) {
|
users.groups = lib.optionalAttrs (cfg.group == name) {
|
||||||
${name}.gid = config.ids.gids.sickbeard;
|
${name}.gid = config.ids.gids.sickbeard;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user