reNixos/s0melapt0p-nix/services/xserver.nix
s0me1newithhand7s f37a8792d2
treewide: fix in depricated options
Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
2025-08-04 01:23:28 +03:00

25 lines
420 B
Nix

{
lib,
pkgs,
...
}: {
services = {
xserver = {
display = lib.mkForce 0;
enable = true;
excludePackages = with pkgs; [
xterm
];
videoDrivers = [
"i915"
];
xkb = {
layout = "us, ru";
options = "grp:caps_toggle";
};
};
};
}