From 4aadf0507417506190872c97f2f1e57f1e0541ee Mon Sep 17 00:00:00 2001 From: Whovian9369 Date: Mon, 2 Sep 2024 05:29:03 -0400 Subject: [PATCH] Actually enable it this time, oops. --- system/my_nixos_vm/hardware-configuration.nix | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 system/my_nixos_vm/hardware-configuration.nix diff --git a/system/my_nixos_vm/hardware-configuration.nix b/system/my_nixos_vm/hardware-configuration.nix new file mode 100644 index 0000000..fd73b62 --- /dev/null +++ b/system/my_nixos_vm/hardware-configuration.nix @@ -0,0 +1,37 @@ +# 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. +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = [ ]; + + boot.initrd.availableKernelModules = [ "ata_piix" "mptspi" "uhci_hcd" "ehci_pci" "ahci" "sd_mod" "sr_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/4d7aa7d9-9e9f-41f1-9606-5a5f58c25db6"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/CBFB-8823"; + fsType = "vfat"; + options = [ "fmask=0077" "dmask=0077" ]; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/f719f7e2-5be3-4986-ab0c-52fb577d65ee"; } + ]; + + # 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..useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.ens33.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; +}