14 lines
262 B
Nix
14 lines
262 B
Nix
{pkgs, ...}: {
|
|
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
|
|
];
|
|
}
|