2023-01-15 18:56:16 +01: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.
|
|
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
|
];
|
|
|
|
|
|
2023-02-15 21:19:56 +01:00
|
|
|
|
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
2023-01-15 18:56:16 +01:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
2023-02-15 21:19:56 +01:00
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
2023-01-15 18:56:16 +01:00
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
2023-02-15 21:19:56 +01:00
|
|
|
|
{ device = "/dev/disk/by-uuid/4FD5-6BF5";
|
2023-01-15 18:56:16 +01:00
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices = [ ];
|
|
|
|
|
|
2023-01-15 22:48:29 +01:00
|
|
|
|
# Enables DHCP on the right ethernet interface.
|
2023-02-15 21:19:56 +01:00
|
|
|
|
networking.interfaces.eno1.useDHCP = true;
|
2023-01-15 18:56:16 +01:00
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
2023-02-15 21:19:56 +01:00
|
|
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
2023-01-15 18:56:16 +01:00
|
|
|
|
}
|