nixconf/systems/x86_64-linux/wafer/hardware.nix
Bailey 0fd5b4211f Adds wafer chromebook.
Get it? Cause its *wafer thin*.
2024-06-13 22:41:50 -04:00

56 lines
1.8 KiB
Nix

{
config,
lib,
modulesPath,
...
}:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot.initrd.availableKernelModules = [ "xhci_pci" "usb_storage" "sd_mod" "sdhci_acpi" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/1a78db80-8c3c-44a4-965d-adb6ac86fb6e";
fsType = "btrfs";
options = [ "subvol=rootfs" ];
};
boot.initrd.luks.devices."cryptroot".device = "/dev/disk/by-uuid/7832b92e-6223-4de1-bdab-77c73b86c5dc";
fileSystems."/nix" =
{ device = "/dev/disk/by-uuid/1a78db80-8c3c-44a4-965d-adb6ac86fb6e";
fsType = "btrfs";
options = [ "subvol=nix" ];
};
fileSystems."/home" =
{ device = "/dev/disk/by-uuid/1a78db80-8c3c-44a4-965d-adb6ac86fb6e";
fsType = "btrfs";
options = [ "subvol=home" ];
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/21B7-1014";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/36e5c8c1-aece-469c-80e0-eadac77d3ce8"; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}