diff options
author | Frankie B. <git@diskfloppy.me> | 2024-05-29 14:39:33 +0100 |
---|---|---|
committer | Frankie B. <git@diskfloppy.me> | 2024-05-29 14:45:17 +0100 |
commit | 9bfa850bc3935fdc21c457f8325325cb28298f7f (patch) | |
tree | eaf7bf469fb586db6e50b727001b1308fa43e0b8 /hosts/banana/hardware-configuration.nix | |
parent | b3d517dbf9b38f99748bf5cbcf33a555357411db (diff) |
Update packages
Diffstat (limited to 'hosts/banana/hardware-configuration.nix')
-rw-r--r-- | hosts/banana/hardware-configuration.nix | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/hosts/banana/hardware-configuration.nix b/hosts/banana/hardware-configuration.nix new file mode 100644 index 0000000..432e7bf --- /dev/null +++ b/hosts/banana/hardware-configuration.nix @@ -0,0 +1,34 @@ +# 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" "ohci_pci" "ehci_pci" "xhci_pci" "pata_jmicron" "aic7xxx" "firewire_ohci" "usb_storage" "usbhid" "floppy" "sd_mod" "sr_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/805a68e8-b1d8-40b3-a264-58a90044b610"; + fsType = "ext4"; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/5190c160-67ec-45b2-bded-b7e6f858cb76"; } + ]; + + # 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.enp6s0.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +} |