vm1 | update hardware

This commit is contained in:
Don Harper 2022-11-26 22:43:58 -06:00
parent a94cf17a56
commit 212b3b7cb1

View file

@ -14,18 +14,16 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/d14be520-2b13-4f2a-8873-4c2319cae32d";
{ device = "/dev/vda3";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/7923-4D98";
{ device = "/dev/vda1";
fsType = "vfat";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/732f3844-d789-4dbc-a581-413fe861ea05"; }
];
swapDevices = [ ];
# 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
@ -34,6 +32,5 @@
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp1s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}