fix: require mount for calibre and navidrome
This commit is contained in:
parent
a7f8b8187c
commit
97bc861c9e
2 changed files with 9 additions and 0 deletions
|
@ -4,9 +4,15 @@
|
|||
enable = true;
|
||||
options = {
|
||||
enableBookUploading = true;
|
||||
calibreLibrary = "/mnt/books";
|
||||
};
|
||||
};
|
||||
|
||||
systemd.services.calibre-web = {
|
||||
after = [ "mnt-books.mount" ];
|
||||
requires = [ "mnt-books.mount" ];
|
||||
};
|
||||
|
||||
fileSystems."/mnt/books" = {
|
||||
device = "192.168.178.21:/mnt/Fort/data/books";
|
||||
fsType = "nfs";
|
||||
|
|
|
@ -76,6 +76,9 @@ in
|
|||
};
|
||||
|
||||
systemd.services.navidrome = {
|
||||
after = mkIf (cfg.library.type == "nfs") [ "mnt-music.mount" ];
|
||||
requires = mkIf (cfg.library.type == "nfs") [ "mnt-music.mount" ];
|
||||
|
||||
serviceConfig = {
|
||||
Restart = cfg.restartPolicy;
|
||||
EnvironmentFile = config.age.secrets.navidrome.path;
|
||||
|
|
Loading…
Add table
Reference in a new issue