feat: shan back up shows and music to nihilus

This commit is contained in:
Nydragon 2024-10-22 17:16:24 +02:00
parent 42f0baa4ff
commit 730ad30463
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
3 changed files with 54 additions and 2 deletions

View file

@ -44,6 +44,7 @@ lib.mkIf osConfig.programs.sway.enable {
swipe:down focus down
}
workspace 1
font pango:monospace 0.001
'';
config = {
modifier = "Mod4";

View file

@ -35,6 +35,16 @@
comment = "brontes's backup space";
mode = "write";
}
{
name = "music-backup";
comment = "backup location for music files";
mode = "write";
}
{
name = "shows-backup";
comment = "backup location for tv shows";
mode = "write";
}
];
};
};

View file

@ -1,7 +1,5 @@
{
modulesPath,
lib,
pkgs,
pubkeys,
...
}:
@ -94,6 +92,24 @@
};
incremental.enable = true;
}
{
sources = [ "/mnt/music" ];
target = {
location = "music-backup";
type = "rsyncd";
host = "nihilus";
};
incremental.enable = true;
}
{
sources = [ "/mnt/shows" ];
target = {
location = "shows-backup";
type = "rsyncd";
host = "nihilus";
};
incremental.enable = true;
}
];
};
};
@ -102,6 +118,11 @@
services = {
openssh.enable = true;
jellyfin = {
enable = true;
openFirewall = true;
};
immich = {
enable = true;
openFirewall = true;
@ -109,6 +130,26 @@
};
};
fileSystems = {
"/mnt/shows" = {
device = "192.168.178.21:/mnt/Fort/data/shows";
fsType = "nfs";
options = [
"x-systemd.automount"
"ro"
];
};
"/mnt/movies" = {
device = "192.168.178.21:/mnt/Fort/data/movies";
fsType = "nfs";
options = [
"x-systemd.automount"
"ro"
];
};
};
users.users.root.openssh.authorizedKeys.keys = [ pubkeys.ny ];
system.stateVersion = "23.11";