diff options
Diffstat (limited to 'hosts/thinkpad/hardware.nix')
| -rw-r--r-- | hosts/thinkpad/hardware.nix | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/hosts/thinkpad/hardware.nix b/hosts/thinkpad/hardware.nix index a012cbc..9d58333 100644 --- a/hosts/thinkpad/hardware.nix +++ b/hosts/thinkpad/hardware.nix @@ -1,24 +1,9 @@ -{ - config, - inputs, - ... -}: { +{inputs, ...}: { # external defaults imports = [ inputs.nixos-hardware.nixosModules.lenovo-thinkpad-x1-7th-gen ]; - # bootloader - boot.loader = { - efi.canTouchEfiVariables = true; - grub = { - enable = true; - efiSupport = true; - device = "nodev"; - splashImage = config.theme.wallpaper; - }; - }; - # kernel modules boot.initrd.availableKernelModules = ["xhci_pci" "nvme" "usb_storage" "sd_mod"]; boot.initrd.kernelModules = []; |