nixos-config/modules/core/wayland.nix

24 lines
387 B
Nix
Raw Permalink Normal View History

{ username, pkgs, ... }:
2023-11-05 11:40:44 +01:00
{
services = {
libinput = {
enable = true;
# mouse = {
# accelProfile = "flat";
# };
};
};
2023-11-05 11:40:44 +01:00
programs.hyprland.enable = true;
xdg.portal = {
enable = true;
wlr.enable = true;
2023-11-12 21:24:50 +01:00
xdgOpenUsePortal = true;
2023-11-05 11:40:44 +01:00
extraPortals = [
pkgs.xdg-desktop-portal-hyprland
2023-11-12 21:24:50 +01:00
pkgs.xdg-desktop-portal-gtk
2023-11-05 11:40:44 +01:00
];
};
}