mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 13:59:54 -05:00
Aly Raffauf
28b459a615
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
30 lines
570 B
Nix
30 lines
570 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
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"];
|
|
|
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
|
};
|
|
|
|
hardware = {
|
|
enableAllFirmware = true;
|
|
sensor.iio.enable = true;
|
|
};
|
|
|
|
services = {
|
|
power-profiles-daemon.enable = true;
|
|
upower.enable = true;
|
|
};
|
|
}
|