mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 11:23:55 -05:00
Aly Raffauf
1e41b73fb2
Some checks are pending
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
* pacifidlog: use xanmod kernel * pacifidlog: add heroic and lutris * legion go: use zenpower * legion go: fix boot params * common/cpu/amd: remove redundant(?) amd_pstate=active param
45 lines
859 B
Nix
45 lines
859 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 = [
|
|
"amdgpu"
|
|
"nvme"
|
|
"rtsx_pci_sdmmc"
|
|
"sd_mod"
|
|
"sdhci_pci"
|
|
"thunderbolt"
|
|
"usb_storage"
|
|
"usbhid"
|
|
"xhci_pci"
|
|
];
|
|
|
|
kernelModules = ["amdgpu"];
|
|
};
|
|
|
|
blacklistedKernelModules = ["k10temp"];
|
|
extraModulePackages = with config.boot.kernelPackages; [acpi_call zenpower];
|
|
kernelModules = ["zenpower"];
|
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_xanmod_latest;
|
|
};
|
|
|
|
hardware = {
|
|
enableAllFirmware = true;
|
|
sensor.iio.enable = true;
|
|
};
|
|
|
|
services.upower.enable = true;
|
|
}
|