diff --git a/vm1/hardware-configuration.nix b/vm1/hardware-configuration.nix index 362833c..dc2ad46 100644 --- a/vm1/hardware-configuration.nix +++ b/vm1/hardware-configuration.nix @@ -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; }