feat: shan back up shows and music to nihilus
This commit is contained in:
parent
42f0baa4ff
commit
730ad30463
3 changed files with 54 additions and 2 deletions
|
@ -44,6 +44,7 @@ lib.mkIf osConfig.programs.sway.enable {
|
||||||
swipe:down focus down
|
swipe:down focus down
|
||||||
}
|
}
|
||||||
workspace 1
|
workspace 1
|
||||||
|
font pango:monospace 0.001
|
||||||
'';
|
'';
|
||||||
config = {
|
config = {
|
||||||
modifier = "Mod4";
|
modifier = "Mod4";
|
||||||
|
|
|
@ -35,6 +35,16 @@
|
||||||
comment = "brontes's backup space";
|
comment = "brontes's backup space";
|
||||||
mode = "write";
|
mode = "write";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "music-backup";
|
||||||
|
comment = "backup location for music files";
|
||||||
|
mode = "write";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "shows-backup";
|
||||||
|
comment = "backup location for tv shows";
|
||||||
|
mode = "write";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
{
|
{
|
||||||
modulesPath,
|
modulesPath,
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
pubkeys,
|
pubkeys,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
@ -94,6 +92,24 @@
|
||||||
};
|
};
|
||||||
incremental.enable = true;
|
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 = {
|
services = {
|
||||||
openssh.enable = true;
|
openssh.enable = true;
|
||||||
|
|
||||||
|
jellyfin = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
};
|
||||||
|
|
||||||
immich = {
|
immich = {
|
||||||
enable = true;
|
enable = true;
|
||||||
openFirewall = 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 ];
|
users.users.root.openssh.authorizedKeys.keys = [ pubkeys.ny ];
|
||||||
|
|
||||||
system.stateVersion = "23.11";
|
system.stateVersion = "23.11";
|
||||||
|
|
Loading…
Add table
Reference in a new issue