diff options
author | William Carroll <wpcarro@gmail.com> | 2022-04-13T02·08-0700 |
---|---|---|
committer | wpcarro <wpcarro@gmail.com> | 2022-04-15T19·07+0000 |
commit | d843f0bf4cf27b33c6cf134c4bd3dfd4d646cbc8 (patch) | |
tree | a186713dad4e9b7f3d7bd7279789ca0bbfc7c25d /users/wpcarro/nixos/ava/hardware.nix | |
parent | a37584a562a4768d9f3c08fb69cb8d7b50b31094 (diff) |
feat(wpcarro/ava): Support new machine r/3953
ava is my new (NixOS!) work machine :) Change-Id: I1f089f00c02519d5d1d93d011f29075d53500e74 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5450 Reviewed-by: wpcarro <wpcarro@gmail.com> Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/nixos/ava/hardware.nix')
-rw-r--r-- | users/wpcarro/nixos/ava/hardware.nix | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/users/wpcarro/nixos/ava/hardware.nix b/users/wpcarro/nixos/ava/hardware.nix new file mode 100644 index 000000000000..eb1fff3a8448 --- /dev/null +++ b/users/wpcarro/nixos/ava/hardware.nix @@ -0,0 +1,28 @@ +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = + [ (modulesPath + "/installer/scan/not-detected.nix") + ]; + + boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-intel" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/60d92789-c44e-4620-885d-1d81d0759f1d"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/C62C-9B32"; + fsType = "vfat"; + }; + + swapDevices = []; + + hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; + # high-resolution display + hardware.video.hidpi.enable = lib.mkDefault true; +} |