From 730ad304632d7eb9347f9fe1ca4cd20a05ac4ebb Mon Sep 17 00:00:00 2001 From: Nydragon Date: Tue, 22 Oct 2024 17:16:24 +0200 Subject: [PATCH] feat: shan back up shows and music to nihilus --- home/sway/default.nix | 1 + hosts/nihilus/default.nix | 10 +++++++++ hosts/shan/default.nix | 45 +++++++++++++++++++++++++++++++++++++-- 3 files changed, 54 insertions(+), 2 deletions(-) diff --git a/home/sway/default.nix b/home/sway/default.nix index 7028fa4..6ec33e1 100644 --- a/home/sway/default.nix +++ b/home/sway/default.nix @@ -44,6 +44,7 @@ lib.mkIf osConfig.programs.sway.enable { swipe:down focus down } workspace 1 + font pango:monospace 0.001 ''; config = { modifier = "Mod4"; diff --git a/hosts/nihilus/default.nix b/hosts/nihilus/default.nix index acaa047..c66f8b5 100644 --- a/hosts/nihilus/default.nix +++ b/hosts/nihilus/default.nix @@ -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"; + } ]; }; }; diff --git a/hosts/shan/default.nix b/hosts/shan/default.nix index b057071..cbe6ea6 100644 --- a/hosts/shan/default.nix +++ b/hosts/shan/default.nix @@ -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";