diff options
| author | scouckel <james.krinsky@gmail.com> | 2026-01-09 15:02:56 -0500 |
|---|---|---|
| committer | scouckel <james.krinsky@gmail.com> | 2026-01-09 15:02:56 -0500 |
| commit | 697ce89f8053fe8547028dd8e3367f6934bcb9ac (patch) | |
| tree | 7d6153879f2eb96ece5a366666277def220442fd /hosts/shar/hardware-configuraton.nix | |
| parent | 1e3f79185328a0ea7d4f1f788fbd20da933af2f4 (diff) | |
shar + update
Diffstat (limited to 'hosts/shar/hardware-configuraton.nix')
| -rw-r--r-- | hosts/shar/hardware-configuraton.nix | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/hosts/shar/hardware-configuraton.nix b/hosts/shar/hardware-configuraton.nix index e69de29..32eed3f 100644 --- a/hosts/shar/hardware-configuraton.nix +++ b/hosts/shar/hardware-configuraton.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 = [ "ahci" "xhci_pci" "ehci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-intel" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/737de4e0-554e-4175-a454-677cf03dbada"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/8201-A778"; + fsType = "vfat"; + options = [ "fmask=0077" "dmask=0077" ]; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/429ba137-6ea4-43ba-97ff-e2c2206f935b"; } + ]; + + # 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.<interface>.useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.eno1.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +} |
