nix-config/modules/optional/wayland.nix
2023-09-26 22:25:58 +02:00

20 lines
315 B
Nix

{
lib,
minimal,
pkgs,
...
}:
lib.optionalAttrs (!minimal) {
services.dbus.enable = true;
xdg.portal = {
enable = true;
wlr.enable = true;
extraPortals = with pkgs; [xdg-desktop-portal-wlr];
};
environment.systemPackages = with pkgs; [
xdg-utils
wdisplays
wl-clipboard
];
}