mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 14:29:56 -05:00
32 lines
649 B
Nix
32 lines
649 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
self,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
self.nixosModules.hw-common-amd-cpu
|
||
|
self.nixosModules.hw-common-amd-gpu
|
||
|
self.nixosModules.hw-common-bluetooth
|
||
|
self.nixosModules.hw-common-ssd
|
||
|
];
|
||
|
|
||
|
boot = {
|
||
|
initrd = {
|
||
|
availableKernelModules = ["nvme" "sdhci_pci" "thunderbolt" "usb_storage" "usbhid" "xhci_pci"];
|
||
|
kernelModules = ["amdgpu"];
|
||
|
};
|
||
|
|
||
|
extraModulePackages = with config.boot.kernelPackages; [acpi_call];
|
||
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
||
|
};
|
||
|
|
||
|
hardware = {
|
||
|
enableAllFirmware = true;
|
||
|
sensor.iio.enable = true;
|
||
|
};
|
||
|
|
||
|
services.upower.enable = true;
|
||
|
}
|