diff --git a/application-configuration.nix b/application-configuration.nix index d54f431..e6e4c2b 100644 --- a/application-configuration.nix +++ b/application-configuration.nix @@ -34,14 +34,14 @@ ]; # kde connect - networking.firewall = { + networking.firewall = { enable = true; - allowedTCPPortRanges = [ + allowedTCPPortRanges = [ { from = 1714; to = 1764; } # KDE Connect - ]; - allowedUDPPortRanges = [ + ]; + allowedUDPPortRanges = [ { from = 1714; to = 1764; } # KDE Connect - ]; + ]; }; # install Steam @@ -74,10 +74,12 @@ swtpm.enable = true; ovmf = { enable = true; - packages = [(pkgs.OVMF.override { - secureBoot = true; - tpmSupport = true; - }).fd]; + packages = [ + (pkgs.OVMF.override { + secureBoot = true; + tpmSupport = true; + }).fd + ]; }; }; };