mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 21:20:32 +01:00
Added screen to common
This commit is contained in:
parent
80e5ab252a
commit
f4772a4851
|
@ -29,6 +29,7 @@
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
sops
|
sops
|
||||||
tldr
|
tldr
|
||||||
|
screen
|
||||||
inputs.compose2nix.packages.${pkgs.system}.default
|
inputs.compose2nix.packages.${pkgs.system}.default
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -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;
|
|
||||||
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue