diff --git a/hosts/dunamis/configuration.nix b/hosts/dunamis/configuration.nix index 8ae9afe..94f1e60 100644 --- a/hosts/dunamis/configuration.nix +++ b/hosts/dunamis/configuration.nix @@ -1,6 +1,7 @@ { inputs, lib, + pkgs, ... }: { imports = with inputs; [ @@ -26,6 +27,21 @@ user = "user"; }; + environment.systemPackages = [pkgs.labwc]; + services.xserver = { + enable = true; + desktopManager = { + xterm.enable = false; + xfce = { + enable = true; + noDesktop = true; + enableXfwm = false; + }; + }; + # windowManager.i3.enable = true; + }; + # services.displayManager.defaultSession = "xfce"; + networking.firewall.allowedTCPPorts = [3923 3921 3990]; # for github:9001/copyparty networking.networkmanager.enable = lib.mkDefault false;