testing fix for nfs shares

This commit is contained in:
Geir Okkenhaug Jerstad 2025-06-11 09:51:36 +02:00
parent e440585a8c
commit 3f93a85469
3 changed files with 452 additions and 12 deletions

View file

@ -1,6 +1,8 @@
{ config, pkgs, ... }:
{
config,
pkgs,
...
}: {
imports = [
../../../modules/users/media-group.nix
];
@ -8,7 +10,7 @@
services.transmission = {
package = pkgs.transmission_4;
enable = true;
user = "sma"; # Using admin user for server processes
user = "sma"; # Using admin user for server processes
group = "media";
settings.rpc-port = 9091;
settings.rpc-bind-address = "0.0.0.0";
@ -19,7 +21,7 @@
rpc-host-whitelist = "sleeper-service,localhost,congenital-optimist";
};
};
# Downloads directory ownership will be handled by NFS module tmpfiles rules
# Removed duplicate tmpfiles rule since NFS module already creates this directory
}