nixos-config/modules/core/wayland.nix
2024-10-30 12:07:31 +01:00

23 lines
387 B
Nix

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