remove minidlna leftovers

This commit is contained in:
Motiejus Jakštys 2024-08-03 06:56:20 +03:00
parent 8c74bdca64
commit a6169de898
2 changed files with 8 additions and 8 deletions

View File

@ -65,6 +65,14 @@ in
systemd.tmpfiles.rules = [ "d /var/www 0755 motiejus users -" ]; systemd.tmpfiles.rules = [ "d /var/www 0755 motiejus users -" ];
systemd.services.minidlna = {
serviceConfig = {
ProtectSystem = "strict";
ProtectHome = "tmpfs";
BindReadOnlyPaths = [ "/home/motiejus/video" ];
};
};
services = { services = {
pcscd.enable = true; pcscd.enable = true;
acpid.enable = true; acpid.enable = true;

View File

@ -441,14 +441,6 @@
}; };
}; };
minidlna = {
serviceConfig = {
ProtectSystem = "strict";
ProtectHome = "tmpfs";
BindReadOnlyPaths = [ "/home/motiejus/video" ];
};
};
syncthing-relay.restartIfChanged = false; syncthing-relay.restartIfChanged = false;
}; };