nixpkgs-fmt run

This commit is contained in:
Trolli Schmittlauch 2021-06-09 10:05:51 +02:00
parent 265464ad21
commit 38d50cb04d

View file

@ -5,7 +5,7 @@
{ config, pkgs, ... }:
let
unstable = import <nixos-unstable> {};
unstable = import <nixos-unstable> { };
in
{
@ -95,8 +95,8 @@ in
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
networking.firewall.allowedTCPPortRanges = [ { from = 1714; to = 1764; } ];
networking.firewall.allowedUDPPortRanges = [ { from = 1714; to = 1764; } ]; # for KDE connect
networking.firewall.allowedTCPPortRanges = [{ from = 1714; to = 1764; }];
networking.firewall.allowedUDPPortRanges = [{ from = 1714; to = 1764; }]; # for KDE connect
# Or disable the firewall altogether.
# networking.firewall.enable = false;