filesharing: Add localsend

This commit is contained in:
caem 2025-02-20 12:30:25 +01:00
parent cced15a507
commit 17520db0e4
Signed by: caem
GPG key ID: 69A830D03203405F

View file

@ -0,0 +1,14 @@
{ username, ... }:
{
environment.persistence."/nix/persist" = {
users."${username}".directories = [
".local/share/org.localsend.localsend_app"
];
};
programs.localsend = {
enable = true;
openFirewall = true;
};
}