nixos-config/modules/core/wayland.nix

21 lines
377 B
Nix

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