diff --git a/common/default.nix b/common/default.nix index 5367ca6..9bf589a 100644 --- a/common/default.nix +++ b/common/default.nix @@ -29,6 +29,7 @@ environment.systemPackages = with pkgs; [ sops tldr + screen inputs.compose2nix.packages.${pkgs.system}.default ]; diff --git a/hosts/x86_64-linux/seraphim/rsync.nix b/hosts/x86_64-linux/seraphim/rsync.nix deleted file mode 100644 index 5b25f45..0000000 --- a/hosts/x86_64-linux/seraphim/rsync.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: { - # systemd.services.rsync-movies = { - # description = "Rsync Movies to Remote Server"; - # serviceConfig = { - # User = "xqtc"; - # ExecStart = "${pkgs.rsync}/bin/rsync -a --ignore-existing /home/crime/radarr/movies/ xqtc@88.99.90.90:~/jellyfin/movies/"; - # }; - # }; - # systemd.services.rsync-shows = { - # description = "Rsync Shows to Remote Server"; - # - # serviceConfig = { - # User = "xqtc"; - # ExecStart = "${pkgs.rsync}/bin/rsync -a --ignore-existing /home/crime/sonarr/movies/ xqtc@88.99.90.90:~/jellyfin/shows/"; - # }; - # }; - # - # systemd.timers.rsync-shows = { - # description = "Run Rsync Movies Service"; - # timerConfig = { - # OnCalendar = "daily"; - # Persistent = true; - # }; - # wantedBy = ["timers.target"]; - # }; - # systemd.timers.rsync-movies = { - # description = "Run Rsync Shows Service"; - # timerConfig = { - # OnCalendar = "daily"; - # Persistent = true; - # }; - # wantedBy = ["timers.target"]; - # }; - # environment.systemPackages = with pkgs; [ - # rsync - # openssh - # ]; - services.rsync-movies = { - enable = true; - - }; -}