1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
9f1d07c119 Assign static IPv6 to palladium 2022-01-11 19:48:43 +01:00
e40273f767 Optimize youtube-dl download options 2022-01-03 20:57:54 +01:00
2 changed files with 5 additions and 2 deletions

View File

@ -15,7 +15,9 @@
networking.hostName = "palladium"; networking.hostName = "palladium";
networking.useDHCP = false; networking.useDHCP = false;
networking.interfaces.enp3s0.useDHCP = true; networking.interfaces.enp3s0.ipv6.addresses = [ { address = "2a01:4f8:1c0c:8221::11"; prefixLength = 64; } ];
networking.defaultGateway6 = { address = "2a01:4f8:1c0c:8221::1"; interface = "enp3s0"; };
networking.nameservers = [ "fd00:152:152::1" ];
# Keeping the harddrives quiet # Keeping the harddrives quiet
services.udev.extraRules = '' services.udev.extraRules = ''

View File

@ -27,12 +27,13 @@
serviceConfig = { serviceConfig = {
User = "data-mixcloud"; User = "data-mixcloud";
Group = "data-mixcloud"; Group = "data-mixcloud";
Restart="on-failure";
}; };
path = [ pkgs.youtube-dl ]; path = [ pkgs.youtube-dl ];
script = '' script = ''
mkdir -p /data/mixcloud/couchsofa/ mkdir -p /data/mixcloud/couchsofa/
cd /data/mixcloud/couchsofa/ cd /data/mixcloud/couchsofa/
youtube-dl https://www.mixcloud.com/couchsofa/ youtube-dl --ignore-errors --playlist-random --newline https://www.mixcloud.com/couchsofa/
''; '';
startAt = "*-*-* 05:05:00"; startAt = "*-*-* 05:05:00";
}; };