nixos-config/modules/core/wayland.nix

22 lines
377 B
Nix
Raw 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
xdg.portal = {
configPackages = [ pkgs.xdg-desktop-portal-gtk ];
2023-11-05 11:40:44 +01:00
enable = true;
wlr.enable = true;
2023-11-12 21:24:50 +01:00
xdgOpenUsePortal = true;
# extraPortals = [
# pkgs.xdg-desktop-portal-hyprland
# ];
2023-11-05 11:40:44 +01:00
};
}