Nixfiles! :3
0

Configure Feed

Select the types of activity you want to include in your feed.

Create sections for rsync, this may enhance our chances at efficient backups, otherwise I'm switching for a http sollution


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

MLC Bloeiman (Jul 15, 2026, 11:29 AM UTC) eae4ba36 2842a9b3

+21 -1
+21 -1
hosts/frigometri/configuration.nix
··· 32 32 defaultNetwork.settings.dns_enabled = true; 33 33 }; 34 34 }; 35 - 35 + services.rsyncd = { 36 + enable = true; 37 + settings = { 38 + globalSection = { 39 + uid = "root"; 40 + gid = "root"; 41 + "use chroot" = "no"; 42 + "max connections" = 4; 43 + }; 44 + sections.backups = { 45 + path = "/home/mar/backups"; 46 + "read only" = "no"; 47 + comment = "Main backup archive storage"; 48 + }; 49 + sections.music = { 50 + path = "/home/mar/music"; 51 + "read only" = "no"; 52 + comment = "Music library storage"; 53 + }; 54 + }; 55 + }; 36 56 security.pam.services.sshd.allowNullPassword = true; 37 57 services.fstrim.enable = false; # Let Proxmox host handle fstrim 38 58 services.openssh = {