Files
nixos/hosts/unstable/icdm-root/hardware-configuration.nix
T

54 lines
1.6 KiB
Nix
Raw Normal View History

2023-03-07 17:17:24 -06:00
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
2024-10-19 01:19:59 -05:00
{
config,
lib,
modulesPath,
...
}:
2023-03-07 17:17:24 -06:00
{
2024-10-19 01:19:59 -05:00
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
2023-03-07 17:17:24 -06:00
2024-10-19 01:19:59 -05:00
boot.initrd.availableKernelModules = [
"xhci_pci"
"ehci_pci"
"ahci"
"usbhid"
"usb_storage"
"sd_mod"
];
2023-03-07 17:17:24 -06:00
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
2024-10-19 01:19:59 -05:00
fileSystems."/" = {
device = "/dev/disk/by-uuid/dab0d455-e25e-4445-8fa4-5320047d7e7b";
fsType = "btrfs";
options = [ "subvol=@" ];
};
2023-03-07 17:17:24 -06:00
2024-10-19 01:19:59 -05:00
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/5aedbb07-5761-423b-909d-2560405eae32";
fsType = "ext4";
};
2023-03-07 17:17:24 -06:00
2024-10-19 01:19:59 -05:00
fileSystems."/var" = {
device = "/dev/disk/by-uuid/57968536-c29d-417d-997e-85223d1d1f65";
fsType = "btrfs";
};
2023-03-07 17:17:24 -06:00
2024-10-19 01:19:59 -05:00
swapDevices = [ { device = "/dev/disk/by-uuid/09691dce-375a-43c6-8d40-4498d20a6d9a"; } ];
2023-03-07 17:17:24 -06:00
# 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.eno1.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true;
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}