# 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 = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot.initrd.availableKernelModules = [ "xhci_pci" "megaraid_sas" "ahci" "usbhid" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { device = "/dev/disk/by-uuid/45e5f9e7-7263-443c-9cb1-9143e7dee1d9"; fsType = "ext4"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/5621-2F9E"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; }; fileSystems."/work" = { device = "/dev/disk/by-uuid/baa9d9cc-5ece-45e1-a238-4376700b3ef5"; fsType = "xfs"; }; 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 # 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.enp129s0f0.useDHCP = lib.mkDefault true; # networking.interfaces.enp129s0f1.useDHCP = lib.mkDefault true; # networking.interfaces.enp129s0f2.useDHCP = lib.mkDefault true; # networking.interfaces.enp129s0f3.useDHCP = lib.mkDefault true; # networking.interfaces.enp1s0np0.useDHCP = lib.mkDefault true; # networking.interfaces.flannel.1.useDHCP = lib.mkDefault true; # networking.interfaces.mynet.useDHCP = lib.mkDefault true; # networking.interfaces.veth5b3ba63f.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }