dotfiles/home/features/desktop/wayland-wm/default.nix

30 lines
451 B
Nix
Raw Normal View History

2023-10-01 15:58:58 +00:00
{ pkgs, ... }: {
imports = [
./mako.nix
];
xdg.mimeApps.enable = true;
home.packages = with pkgs; [
grim
gtk3
imv
mimeo
# primary-xwayland
pulseaudio
slurp
waypipe
wf-recorder
wl-clipboard
wl-mirror
# wl-mirror-pick
# xdg-utils-spawn-terminal
ydotool
];
home.sessionVariables = {
MOZ_ENABLE_WAYLAND = 1;
QT_QPA_PLATFORM = "wayland";
LIBSEAT_BACKEND = "logind";
};
}