Ahwxorg/modules/core/wayland.nix

23 lines
418 B
Nix

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