add jellyfin and remove calibre from server

This commit is contained in:
twoneis 2024-02-18 18:29:45 +01:00
parent 5c44493188
commit faffb15d17
3 changed files with 11 additions and 13 deletions

View file

@ -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";
};
}

View file

@ -1,7 +1,6 @@
{ pkgs, ... }: { { pkgs, ... }: {
imports = [ imports = [
# ./access-point.nix # ./access-point.nix
./calibre.nix
]; ];
# Allow ssh access # Allow ssh access

View file

@ -0,0 +1,11 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
jellyfin
jellyfin-web
jellyfin-ffmpeg
];
services.jellyfin = {
enable = true;
};
}