add jellyfin and remove calibre from server
This commit is contained in:
parent
5c44493188
commit
faffb15d17
3 changed files with 11 additions and 13 deletions
|
@ -1,12 +0,0 @@
|
||||||
{ ... }: {
|
|
||||||
services.calibre-server = {
|
|
||||||
enable = true;
|
|
||||||
libraries = [
|
|
||||||
"/home/twoneis/calibre-lib/uni"
|
|
||||||
"/home/twoneis/calibre-lib/pol"
|
|
||||||
"/home/twoneis/calibre-lib/fic"
|
|
||||||
"/home/twoneis/calibre-lib/sci"
|
|
||||||
];
|
|
||||||
user = "twoneis";
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,7 +1,6 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
# ./access-point.nix
|
# ./access-point.nix
|
||||||
./calibre.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Allow ssh access
|
# Allow ssh access
|
||||||
|
|
11
modules/server/jellyfin.nix
Normal file
11
modules/server/jellyfin.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
jellyfin
|
||||||
|
jellyfin-web
|
||||||
|
jellyfin-ffmpeg
|
||||||
|
];
|
||||||
|
|
||||||
|
services.jellyfin = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue