Update from update-inputs-2024-02-18-16-57
This commit is contained in:
commit
e9d4f37d16
@ -62,6 +62,11 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
clerie.nixfiles.system-auto-upgrade = {
|
||||
allowReboot = true;
|
||||
autoUpgrade = true;
|
||||
};
|
||||
|
||||
clerie.monitoring = {
|
||||
enable = true;
|
||||
id = "202";
|
||||
|
@ -26,6 +26,11 @@
|
||||
|
||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||||
|
||||
clerie.nixfiles.system-auto-upgrade = {
|
||||
allowReboot = true;
|
||||
autoUpgrade = true;
|
||||
};
|
||||
|
||||
clerie.monitoring = {
|
||||
enable = true;
|
||||
id = "209";
|
||||
|
@ -82,17 +82,10 @@ in {
|
||||
};
|
||||
users.groups.data-mixcloud = {};
|
||||
|
||||
systemd.services = {
|
||||
"youtube-dl-prepare" = {
|
||||
serviceConfig = {
|
||||
Type = "oneshot";
|
||||
RemainAfterExit = "true";
|
||||
};
|
||||
script = ''
|
||||
mkdir -p /data/mixcloud
|
||||
chown -R data-mixcloud:data-mixcloud /data/mixcloud
|
||||
'';
|
||||
};
|
||||
} // (mapAttrs' generateYoutubedlMixcloudUnits mixcloudSources);
|
||||
systemd.tmpfiles.rules = [
|
||||
"d /data/mixcloud - data-mixcloud data-mixcloud - -"
|
||||
];
|
||||
|
||||
systemd.services = (mapAttrs' generateYoutubedlMixcloudUnits mixcloudSources);
|
||||
systemd.timers = (mapAttrs' generateYoutubedlMixcloudTimers mixcloudSources);
|
||||
}
|
||||
|
@ -26,7 +26,6 @@
|
||||
./tap.nix
|
||||
./uptimestatus.nix
|
||||
./wetter.nix
|
||||
./znc.nix
|
||||
];
|
||||
|
||||
boot.loader.grub.enable = true;
|
||||
|
@ -1,29 +0,0 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
services.znc = {
|
||||
enable = true;
|
||||
mutable = true;
|
||||
dataDir = "/var/lib/znc";
|
||||
configFile = "/var/lib/znc/configs/znc.conf";
|
||||
};
|
||||
|
||||
services.nginx.virtualHosts = {
|
||||
"znc.clerie.de" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://127.0.0.1:1313";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
clerie.nginx-port-forward = {
|
||||
enable = true;
|
||||
tcpPorts."6697" = {
|
||||
host = "127.0.0.1";
|
||||
port = 1311;
|
||||
certName = "znc.clerie.de";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user