nix-da/hosts/shan/calibre-web.nix
nydragon 4581e8ff1f
Some checks failed
/ test (push) Failing after 2s
feat: add freshrss and calibre-web
2025-02-18 19:05:48 +01:00

20 lines
313 B
Nix

{ }:
{
config = {
calibre-web = {
enable = true;
options = {
enableBookUploading = true;
};
};
fileSystems."/mnt/books" = {
device = "192.168.178.21:/mnt/Fort/data/books";
fsType = "nfs";
options = [
"x-systemd.automount"
];
};
};
}