From b67cf3fde73be4296bc89a161abb13a63bc58659 Mon Sep 17 00:00:00 2001 From: prescientmoon Date: Mon, 26 Aug 2024 21:28:35 +0200 Subject: [PATCH] Add generated hardware config for calypso --- hosts/nixos/calypso/hardware/generated.nix | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 hosts/nixos/calypso/hardware/generated.nix diff --git a/hosts/nixos/calypso/hardware/generated.nix b/hosts/nixos/calypso/hardware/generated.nix new file mode 100644 index 0000000..d07ad79 --- /dev/null +++ b/hosts/nixos/calypso/hardware/generated.nix @@ -0,0 +1,26 @@ +# 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 = [ "nvme" "xhci_pci" "thunderbolt" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; + + # 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.tailscale0.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +}