diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix
index aafeb997c326..c7bfb7bf4747 100644
--- a/nixos/modules/misc/ids.nix
+++ b/nixos/modules/misc/ids.nix
@@ -289,7 +289,7 @@
stanchion = 262;
riak-cs = 263;
infinoted = 264;
- # keystone = 265; # unused, removed 2017-12-13
+ sickbeard = 265;
# glance = 266; # unused, removed 2017-12-13
couchpotato = 267;
gogs = 268;
@@ -579,7 +579,7 @@
stanchion = 262;
riak-cs = 263;
infinoted = 264;
- # keystone = 265; # unused, removed 2017-12-13
+ sickbeard = 265;
# glance = 266; # unused, removed 2017-12-13
couchpotato = 267;
gogs = 268;
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index f51a30aec2e9..58bec536c2ae 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -393,6 +393,7 @@
./services/misc/rogue.nix
./services/misc/serviio.nix
./services/misc/safeeyes.nix
+ ./services/misc/sickbeard.nix
./services/misc/siproxd.nix
./services/misc/snapper.nix
./services/misc/sonarr.nix
diff --git a/nixos/modules/services/misc/sickbeard.nix b/nixos/modules/services/misc/sickbeard.nix
new file mode 100644
index 000000000000..5cfbbe516ae1
--- /dev/null
+++ b/nixos/modules/services/misc/sickbeard.nix
@@ -0,0 +1,92 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+
+ name = "sickbeard";
+
+ cfg = config.services.sickbeard;
+ sickbeard = cfg.package;
+
+in
+{
+
+ ###### interface
+
+ options = {
+ services.sickbeard = {
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Whether to enable the sickbeard server.";
+ };
+ package = mkOption {
+ type = types.package;
+ default = pkgs.sickbeard;
+ example = literalExample "pkgs.sickrage";
+ description =''
+ Enable pkgs.sickrage or pkgs.sickgear
+ as an alternative to SickBeard
+ '';
+ };
+ dataDir = mkOption {
+ type = types.path;
+ default = "/var/lib/${name}";
+ description = "Path where to store data files.";
+ };
+ configFile = mkOption {
+ type = types.path;
+ default = "${cfg.dataDir}/config.ini";
+ description = "Path to config file.";
+ };
+ port = mkOption {
+ type = types.ints.u16;
+ default = 8081;
+ description = "Port to bind to.";
+ };
+ user = mkOption {
+ type = types.str;
+ default = name;
+ description = "User to run the service as";
+ };
+ group = mkOption {
+ type = types.str;
+ default = name;
+ description = "Group to run the service as";
+ };
+ };
+ };
+
+
+ ###### implementation
+
+ config = mkIf cfg.enable {
+
+ users.users = optionalAttrs (cfg.user == name) (singleton {
+ name = name;
+ uid = config.ids.uids.sickbeard;
+ group = cfg.group;
+ description = "sickbeard user";
+ home = cfg.dataDir;
+ createHome = true;
+ });
+
+ users.groups = optionalAttrs (cfg.group == name) (singleton {
+ name = name;
+ gid = config.ids.gids.sickbeard;
+ });
+
+ systemd.services.sickbeard = {
+ description = "Sickbeard Server";
+ wantedBy = [ "multi-user.target" ];
+ after = [ "network.target" ];
+
+ serviceConfig = {
+ User = cfg.user;
+ Group = cfg.group;
+ ExecStart = "${sickbeard}/SickBeard.py --datadir ${cfg.dataDir} --config ${cfg.configFile} --port ${toString cfg.port}";
+ };
+ };
+ };
+}