Ahwxorg/modules/core/wayland.nix

21 lines
351 B
Nix

{ username, pkgs, ... }:
{
services = {
libinput = {
enable = true;
# mouse = {
# accelProfile = "flat";
# };
};
};
xdg.portal = {
enable = true;
wlr.enable = true;
xdgOpenUsePortal = true;
extraPortals = [
pkgs.xdg-desktop-portal-hyprland
pkgs.xdg-desktop-portal-gtk
];
};
}