nixos: services: transmission: persist data

This commit is contained in:
Bruno BELANYI 2021-11-05 15:25:50 +01:00
parent 8bd965441a
commit e2b1478d40

View file

@ -91,5 +91,9 @@ in
allowedTCPPorts = [ cfg.peerPort ]; allowedTCPPorts = [ cfg.peerPort ];
allowedUDPPorts = [ cfg.peerPort ]; allowedUDPPorts = [ cfg.peerPort ];
}; };
my.system.persist.directories = [
config.services.transmission.home
];
}; };
} }