nixos: services: transmission: persist data

This commit is contained in:
Bruno BELANYI 2021-11-05 15:25:50 +01:00
parent 3a5781ba4b
commit e1d5f7ce8e

View file

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