diff --git a/hosts/Infini-STICK/default.nix b/hosts/Infini-STICK/default.nix index 4195061..c09b19f 100644 --- a/hosts/Infini-STICK/default.nix +++ b/hosts/Infini-STICK/default.nix @@ -9,7 +9,8 @@ (with hardware; [ sound - gpu.common + gpu.amdgpu + laptop ]) btrfs @@ -18,5 +19,7 @@ ./hardware-configuration.nix ]; + networking.interfaces.wlp1s0.useDHCP = true; + system.stateVersion = "21.11"; } diff --git a/hosts/Infini-STICK/hardware-configuration.nix b/hosts/Infini-STICK/hardware-configuration.nix index 7716075..4777bc7 100644 --- a/hosts/Infini-STICK/hardware-configuration.nix +++ b/hosts/Infini-STICK/hardware-configuration.nix @@ -8,10 +8,12 @@ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "sd_mod" ]; + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; + boot.kernelParams = [ "boot.shell_on_fail" ]; + boot.supportedFilesystems = [ "btrfs" ]; fileSystems."/" = { device = "/dev/disk/by-uuid/b2165920-9be1-435d-838b-82346311892f";