Compare commits
2 Commits
319d292fa0
...
5659cceab5
Author | SHA1 | Date | |
---|---|---|---|
5659cceab5 | |||
2921f3f435 |
@ -38,7 +38,9 @@
|
|||||||
trusted-users = ["root" "phundrak"];
|
trusted-users = ["root" "phundrak"];
|
||||||
};
|
};
|
||||||
services = {
|
services = {
|
||||||
|
calibre.enable = true;
|
||||||
endlessh.enable = true;
|
endlessh.enable = true;
|
||||||
|
jellyfin.enable = true;
|
||||||
plex = {
|
plex = {
|
||||||
enable = true;
|
enable = true;
|
||||||
dataDir = "/tank/web/stacks/plex/plex-config";
|
dataDir = "/tank/web/stacks/plex/plex-config";
|
||||||
|
38
system/services/calibre.nix
Normal file
38
system/services/calibre.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.system.services.calibre;
|
||||||
|
in {
|
||||||
|
options.system.services.calibre = {
|
||||||
|
enable = mkEnableOption "Enable Calibre Web";
|
||||||
|
user = mkOption {
|
||||||
|
type = types.string;
|
||||||
|
default = "phundrak";
|
||||||
|
};
|
||||||
|
group = mkOption {
|
||||||
|
type = types.string;
|
||||||
|
default = "users";
|
||||||
|
};
|
||||||
|
dataDir = mkOption {
|
||||||
|
type = types.string;
|
||||||
|
example = "/tank/calibre/conf";
|
||||||
|
default = "/tank/calibre/conf";
|
||||||
|
};
|
||||||
|
library = mkOption {
|
||||||
|
type = types.string;
|
||||||
|
example = "/tank/calibre/library";
|
||||||
|
default = "/tank/calibre/library";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
config.services.calibre-web = mkIf cfg.enable {
|
||||||
|
inherit (cfg) enable user group dataDir;
|
||||||
|
options = {
|
||||||
|
calibreLibrary = cfg.library;
|
||||||
|
enableBookConversion = true;
|
||||||
|
enableBookUploading = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -1,7 +1,9 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./calibre.nix
|
||||||
./endlessh.nix
|
./endlessh.nix
|
||||||
./fwupd.nix
|
./fwupd.nix
|
||||||
|
./jellyfin.nix
|
||||||
./plex.nix
|
./plex.nix
|
||||||
./printing.nix
|
./printing.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
|
28
system/services/jellyfin.nix
Normal file
28
system/services/jellyfin.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.system.services.jellyfin;
|
||||||
|
in {
|
||||||
|
options.system.services.jellyfin = {
|
||||||
|
enable = mkEnableOption "Enable Jellyfin";
|
||||||
|
dataDir = mkOption {
|
||||||
|
type = types.string;
|
||||||
|
default = "/tank/jellyfin/data";
|
||||||
|
example = "/tank/jellyfin/data";
|
||||||
|
};
|
||||||
|
user = mkOption {
|
||||||
|
type = types.string;
|
||||||
|
default = "phundrak";
|
||||||
|
};
|
||||||
|
group = mkOption {
|
||||||
|
type = types.string;
|
||||||
|
default = "users";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
config.services.jellyfin = mkIf cfg.enable {
|
||||||
|
inherit (cfg) enable group user dataDir;
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user