nix-da/hosts/shan/calibre-web.nix
nydragon 2739488139
Some checks failed
/ test (push) Failing after 2s
fix: shan build
2025-02-25 21:59:59 +01:00

18 lines
316 B
Nix

{
config = {
services.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"
];
};
};
}