From 755bf3d80de7365516db779ca5b555b8c4326a27 Mon Sep 17 00:00:00 2001 From: joachimschmidt557 Date: Fri, 15 Jul 2022 20:21:06 +0200 Subject: [PATCH] dustbowl: misc updates --- nixos/dustbowl.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/dustbowl.nix b/nixos/dustbowl.nix index d113bb6..c170731 100644 --- a/nixos/dustbowl.nix +++ b/nixos/dustbowl.nix @@ -9,6 +9,7 @@ imports = [ # Include the results of the hardware scan. /etc/nixos/hardware-configuration.nix + /etc/nixos/private.nix ./cachix.nix ]; @@ -227,7 +228,7 @@ nixpkgs.overlays = [ emacs-overlay.overlay ]; # Open ports in the firewall. - networking.firewall.allowedTCPPorts = [ 8080 ]; + networking.firewall.allowedTCPPorts = [ 8080 6600 ]; networking.firewall.allowedUDPPorts = [ 8080 ]; # Enable CUPS to print documents. @@ -292,6 +293,7 @@ programs.sway = { extraSessionCommands = '' export XCURSOR_THEME=Adwaita + export _JAVA_AWT_WM_NONREPARENTING=1 ''; wrapperFeatures.gtk = true; enable = true;