ooknet/home/ooks/opt/desktop/standard/wayland/default.nix
2023-07-31 14:47:58 +12:00

38 lines
513 B
Nix

{ pkgs, ... }:
{
imports = [
./mako.nix
./kitty.nix
./firefox.nix
./zathura.nix
./gammastep.nix
];
xdg.mimeApps.enable = true;
home.packages = with pkgs; [
grim
mkv
gtk3
pulseaudio
slurp
wf-recorder
wl-clipboard
wl-mirror
wl-mirror-pick
xdg-utils
ydotool
];
home.sessionVariables = {
MOZ_ENABLE_WAYLAND = 1;
QT_QPA_PLATFORM = "wayland";
LIBSEAT_BACKEND = "logind";
EDITOR = "nvim";
BROWSER = "firefox";
};
}