{ pkgs, hyprland, hy3, ... }: { #programs.sway = { # enable = true; # # wrapperFeatures.gtk = true; # extraSessionCommands = '' # # -- Wayland fixes # # SDL: # export SDL_VIDEODRIVER=wayland # # QT (needs qt5.qtwayland in systemPackages): # export QT_QPA_PLATFORM=wayland-egl # export QT_WAYLAND_DISABLE_WINDOWDECORATION="1" # # Fix for some Java AWT applications (e.g. Android Studio), # # use this if they aren't displayed properly: # export _JAVA_AWT_WM_NONREPARENTING=1 # ''; # # extraPackages = with pkgs; [ # swaybg # #swayidle # #swaylock # waybar # wl-clipboard # grim # slurp # easyeffects # keepassxc # ]; #}; programs.hyprland = { enable = true; package = hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; }; programs.hyprlock.enable = true; environment.systemPackages = with pkgs;[ wmenu waybar wl-clipboard grim slurp #easyeffects keepassxc networkmanagerapplet ]; #environment.etc."hyprPlugins" = { # text = '' # plugin = ${hy3.packages.${pkgs.stdenv.hostPlatform.system}.hy3}/lib/libhy3.so # ''; #}; xdg.portal.wlr.enable = true; }