ma kdeconnect: init

This commit is contained in:
makefu 2020-06-17 09:51:37 +02:00
parent 9d5f48c288
commit 5cd6756ced
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 6 additions and 8 deletions

View File

@ -0,0 +1,6 @@
{pkgs, ... }:
{
environment.systemPackages = with pkgs; [ kdeconnect ];
networking.firewall.allowedUDPPortRanges = [ { from = 1714; to = 1764; } ];
networking.firewall.allowedTCPPortRanges = [ { from = 1714; to = 1764; } ];
}

View File

@ -1,8 +0,0 @@
{ networking.enableIPv6 = false;
boot.kernel.sysctl = {
"net.ipv6.conf.all.disable_ipv6" = 1;
"net.ipv6.conf.default.disable_ipv6" = 1;
"net.ipv6.conf.lo.disable_ipv6" = 1;
};
boot.kernelParams = [ "ipv6.disable=1" ];
}