From 1160ab7a603a9757e96a8fddc96dbd6de4f0bca4 Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Fri, 17 Jan 2025 16:29:03 -0500 Subject: [PATCH] add hardware config --- hosts/WCE-Overseer/default.nix | 1 + hosts/WCE-Overseer/hardware-configuration.nix | 40 +++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 hosts/WCE-Overseer/hardware-configuration.nix diff --git a/hosts/WCE-Overseer/default.nix b/hosts/WCE-Overseer/default.nix index 7f2b3ad..e47b7f0 100644 --- a/hosts/WCE-Overseer/default.nix +++ b/hosts/WCE-Overseer/default.nix @@ -5,6 +5,7 @@ ... }: { imports = [ + ./hardware-configuration.nix ../../modules ]; diff --git a/hosts/WCE-Overseer/hardware-configuration.nix b/hosts/WCE-Overseer/hardware-configuration.nix new file mode 100644 index 0000000..73d1d92 --- /dev/null +++ b/hosts/WCE-Overseer/hardware-configuration.nix @@ -0,0 +1,40 @@ +# 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 = ["zfs" "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod"]; + boot.initrd.kernelModules = []; + boot.kernelModules = []; + boot.extraModulePackages = []; + + fileSystems."/" = { + device = "/dev/disk/by-label/zroot"; + fsType = "auto"; + }; + + fileSystems."/boot" = { + device = "/dev/disk/by-label/boot"; + fsType = "vfat"; + options = ["fmask=0022" "dmask=0022"]; + }; + + # 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.enp4s0.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp8s0.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; +}