diff --git a/hosts/gorgon/default.nix b/hosts/gorgon/default.nix index 0273041..7ec3ec4 100644 --- a/hosts/gorgon/default.nix +++ b/hosts/gorgon/default.nix @@ -94,7 +94,20 @@ in services.xserver.enable = true; services.xserver.displayManager.gdm.enable = true; - services.xserver.desktopManager.gnome3.enable = true; + #services.xserver.desktopManager.gnome3.enable = true; + + programs.sway = { + enable = true; + wrapperFeatures.gtk = true; # so that gtk works properly + extraPackages = with pkgs; [ + swaylock + swayidle + wl-clipboard + mako # notification daemon + alacritty # Alacritty is the default terminal in the config + dmenu # Dmenu is the default in the config but i recommend wofi since its wayland native + ]; + }; xdg.mime.enable = true;