2024-06-21 22:58:12 +02:00
|
|
|
{ username, pkgs, ... }:
|
2023-11-05 11:40:44 +01:00
|
|
|
{
|
2024-06-21 22:58:12 +02:00
|
|
|
services = {
|
2024-10-13 20:03:14 +02:00
|
|
|
# displayManager.autoLogin = {
|
|
|
|
|
# enable = true;
|
|
|
|
|
# user = "${username}";
|
|
|
|
|
# };
|
2024-06-21 22:58:12 +02:00
|
|
|
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
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
}
|