Separate hosts for X220 and T430, generic VirtualBox host

This commit is contained in:
Elnu 2022-10-16 11:32:57 -07:00
parent f3b3397f9c
commit 4f9ca94dc4
6 changed files with 40 additions and 13 deletions

View file

@ -0,0 +1,20 @@
{ ... }:
{
imports = [ (import ./hardware-configuration.nix) ];
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
efiSupport = true;
device = "nodev";
};
};
# Use X11 caps lock to escape remap in TTY
console.useXkbConfig = true;
services.xserver.xkbOptions = "caps:escape";
}