dotfiles/modules/services/kdeconnect.nix

15 lines
258 B
Nix
Raw Normal View History

2021-11-08 15:44:21 +01:00
{ config, lib, pkgs, ... }:
let
ports = {
from = 1714;
to = 1764;
};
2022-02-07 15:30:54 +01:00
in
{
2022-01-09 14:07:54 +01:00
home-manager.users.moritz.services.kdeconnect.enable = true;
2021-11-08 15:44:21 +01:00
networking.firewall = {
allowedTCPPortRanges = [ ports ];
allowedUDPPortRanges = [ ports ];
};
}