diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-16 17:47:11 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-16 17:47:11 -0800 |
commit | 8a8cf9837c05b97754ff226c369144a6fbc7ec3f (patch) | |
tree | f2d5ef6c43d869ca884411491ebe64bf498a3ca8 /hosts/common | |
parent | home-manager: move activate logic in users' config (diff) | |
download | world-8a8cf9837c05b97754ff226c369144a6fbc7ec3f.tar.gz |
sway: install all the required packages
Diffstat (limited to 'hosts/common')
-rw-r--r-- | hosts/common/desktop/xserver.nix | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/hosts/common/desktop/xserver.nix b/hosts/common/desktop/xserver.nix index 58f0578..ba7647c 100644 --- a/hosts/common/desktop/xserver.nix +++ b/hosts/common/desktop/xserver.nix @@ -1,10 +1,24 @@ { config, pkgs, lib, ... }: { - programs.sway = { enable = true; wrapperFeatures.gtk = true; + extraPackages = with pkgs; [ + brightnessctl + polkit_gnome + xsettingsd + swaylock + swayidle + wl-clipboard + ]; + extraSessionCommands = '' + export SDL_VIDEODRIVER=wayland + export QT_QPA_PLATFORM=wayland + export QT_WAYLAND_DISABLE_WINDOWDECORATION="1" + export _JAVA_AWT_WM_NONREPARENTING=1 + export MOZ_ENABLE_WAYLAND=1 + ''; }; services.xserver = { |