Compare commits

..

No commits in common. "8267954e3d1a5fc7b1525d2b6359c41186b76933" and "e15b612b3c18fd087b56bf67ce731e3ec6620700" have entirely different histories.

4 changed files with 13 additions and 5 deletions

View File

@ -63,7 +63,6 @@ in {
"fihnjjcciajhdojfnbdddfaoknhalnja" # I don't care about cookies
"mnjggcdmjocbbbhaepdhchncahnbgone" # SponsorBlock
"dhdgffkkebhmkfjojejmpbldmpobfkfo" # Tampermonkey
"ehpdicggenhgapiikfpnmppdonadlnmp" # Disable Scroll Jacking
];
extraOpts = {
"BrowserSignin" = 0;

View File

@ -42,6 +42,7 @@ in {
signal-desktop
minecraft
sauerbraten
gnome.file-roller
gparted
libreoffice-fresh
thunderbird
@ -64,8 +65,6 @@ in {
services.avahi.enable = true;
services.avahi.nssmdns = true;
programs.file-roller.enable = true;
# Security
services.gnome.gnome-keyring.enable = true;
security.pam.services.googlebot.enableGnomeKeyring = true;

View File

@ -89,6 +89,5 @@
group = "public_data";
uid = 994;
};
users.users.googlebot.extraGroups = [ "public_data" ];
};
}

View File

@ -29,6 +29,12 @@
services.samba.enable = true;
services.plex = {
enable = true;
openFirewall = true;
dataDir = "/data/plex";
};
services.jellyfin = {
enable = true;
openFirewall = true;
@ -43,6 +49,7 @@
};
};
users.users.${config.services.plex.user}.extraGroups = [ "public_data" ];
users.users.${config.services.jellyfin.user}.extraGroups = [ "public_data" ];
users.users.googlebot.extraGroups = [ "transmission" ];
users.groups.transmission.gid = config.ids.gids.transmission;
@ -61,7 +68,7 @@
services.lidarr.enable = true;
services.lidarr.user = "public_data";
services.lidarr.group = "public_data";
users.groups.transmission.members = [ "public_data" ];
users.groups.transmission.members = [ "sonarr" "bazarr" "radarr" "lidarr" ];
services.transmission = {
enable = true;
performanceNetParameters = true;
@ -135,6 +142,10 @@
services.nginx.virtualHosts."sonarr.s0".locations."/".proxyPass = "http://172.16.100.2:8989";
services.nginx.virtualHosts."prowlarr.s0".locations."/".proxyPass = "http://172.16.100.2:9696";
services.nginx.virtualHosts."music.s0".locations."/".proxyPass = "http://localhost:4533";
services.nginx.virtualHosts."plex.s0".locations."/" = {
proxyPass = "http://localhost:32400";
proxyWebsockets = true;
};
services.nginx.virtualHosts."jellyfin.s0".locations."/" = {
proxyPass = "http://localhost:8096";
proxyWebsockets = true;