configurations for my servers and desktops
nix nixos flake dots dotfiles

fix: tmpfile rules

+10 -2
+6 -2
hosts/bluepill/services/slskd.nix
··· 18 18 soulseek.description = "\n- running on NixOS and slskd\n- all files are compressed from FLAC/WAV to AAC with `fdk-aac -vbr 5` (essentially the best and most transparent AAC you can possibly get)\n- tagged and organized with beets\n\nthey/he | feel free to say hi, i don't check my messages super often though. enjoy the shares, and remember to try and support artists if you can :)"; 19 19 }; 20 20 }; 21 - 22 - users.groups.slskd.members = ["devin"]; 21 + 22 + systemd.tmpfiles.rules = [ 23 + "Z /var/lib/slskd 0775 slskd slskd -" 24 + ]; 25 + 26 + users.groups.slskd.members = ["devin"]; 23 27 }
+4
hosts/bluepill/services/transmission.nix
··· 23 23 }; 24 24 }; 25 25 26 + systemd.tmpfiles.rules = [ 27 + "Z /var/lib/transmission 0770 transmission transmission -" 28 + ]; 29 + 26 30 users.groups.transmission.members = ["devin"]; 27 31 }