nixos-config/modules/core/wayland.nix

27 lines
484 B
Nix

{ username, pkgs, ... }:
{
services = {
# displayManager.autoLogin = {
# enable = true;
# user = "${username}";
# };
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
];
};
}