Merge pull request #292822 from xNaxdy/work/plasma6-install-sshfs

programs/kdeconnect: install sshfs
This commit is contained in:
K900 2024-03-02 19:59:13 +03:00 committed by GitHub
commit 633a090546
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,10 @@ with lib;
cfg = config.programs.kdeconnect;
in
mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
environment.systemPackages = [
cfg.package
pkgs.sshfs
];
networking.firewall = rec {
allowedTCPPortRanges = [ { from = 1714; to = 1764; } ];
allowedUDPPortRanges = allowedTCPPortRanges;