fix: xkb options change, see nixpkgs#259891

This commit is contained in:
xinyangli 2024-03-07 12:03:59 +08:00
parent 40ae3cc6e2
commit 26a11e0df0
No known key found for this signature in database
3 changed files with 8 additions and 4 deletions

View file

@ -73,8 +73,8 @@
# Configure keymap in X11
services.xserver = {
layout = "us";
xkbVariant = "";
xkb.layout = "us";
xkb.variant = "";
};
# Keyboard mapping on internal keyboard
services.keyd = {
@ -294,7 +294,6 @@
libvirtd.enable = true;
podman = {
enable = true;
enableNvidia = true;
};
docker = {
enable = true;

View file

@ -49,4 +49,9 @@
enable = true;
driSupport32Bit = true;
};
hardware.nvidia = {
powerManagement.enable = true;
dynamicBoost.enable = lib.mkForce false;
};
}