mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 16:46:11 +01:00
30 lines
479 B
Nix
30 lines
479 B
Nix
{pkgs, ...}: {
|
|
imports = [];
|
|
|
|
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
|
|
ydotool
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
MOZ_ENABLE_WAYLAND = 1;
|
|
QT_QPA_PLATFORM = "wayland";
|
|
LIBSEAT_BACKEND = "logind";
|
|
};
|
|
|
|
# xdg.portal.extraPortals = [pkgs.xdg-desktop-portal-wlr];
|
|
}
|