diff options
author | Frankie B. <git@diskfloppy.me> | 2024-08-25 01:06:21 +0100 |
---|---|---|
committer | Frankie B. <git@diskfloppy.me> | 2024-08-25 01:06:21 +0100 |
commit | e68b978c77284c18aed20042ee7122af53567d8f (patch) | |
tree | 283ae08c6d55262edb8e7df2c1944edac501f525 /hosts/banana/hardware-configuration.nix | |
parent | d2b3336f13ab02598f056ddbab397570e2193e37 (diff) |
fuck
Diffstat (limited to 'hosts/banana/hardware-configuration.nix')
-rw-r--r-- | hosts/banana/hardware-configuration.nix | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/hosts/banana/hardware-configuration.nix b/hosts/banana/hardware-configuration.nix deleted file mode 100644 index 432e7bf..0000000 --- a/hosts/banana/hardware-configuration.nix +++ /dev/null @@ -1,34 +0,0 @@ -# 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; -} |