dotfiles/home/features/desktop/wayland-wm/default.nix
2023-10-01 16:33:22 -05:00

32 lines
499 B
Nix

{ pkgs, ... }: {
imports = [
./kitty.nix
./mako.nix
./waybar.nix
./wofi.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";
};
}