mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-05-06 11:02:20 +02:00
21 lines
377 B
Nix
21 lines
377 B
Nix
{ username, pkgs, ... }:
|
|
{
|
|
services = {
|
|
libinput = {
|
|
enable = true;
|
|
# mouse = {
|
|
# accelProfile = "flat";
|
|
# };
|
|
};
|
|
};
|
|
|
|
xdg.portal = {
|
|
configPackages = [ pkgs.xdg-desktop-portal-gtk ];
|
|
enable = true;
|
|
wlr.enable = true;
|
|
xdgOpenUsePortal = true;
|
|
# extraPortals = [
|
|
# pkgs.xdg-desktop-portal-hyprland
|
|
# ];
|
|
};
|
|
}
|