nix-config/modules/graphical/wayland.nix

14 lines
262 B
Nix
Raw Normal View History

2023-09-01 20:17:33 +02:00
{pkgs, ...}: {
services.dbus.enable = true;
xdg.portal = {
enable = true;
2023-09-05 23:33:38 +02:00
wlr.enable = true;
2023-09-01 20:17:33 +02:00
extraPortals = with pkgs; [xdg-desktop-portal-wlr];
};
environment.systemPackages = with pkgs; [
xdg-utils
wdisplays
wl-clipboard
];
2023-09-01 20:17:33 +02:00
}