mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-26 17:11:54 -05:00
36 lines
671 B
Nix
36 lines
671 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
self,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../common.nix
|
|
../common.nix
|
|
self.nixosModules.hw-common-amd-cpu
|
|
self.nixosModules.hw-common-amd-gpu
|
|
self.nixosModules.hw-common-bluetooth
|
|
self.nixosModules.hw-common-laptop
|
|
self.nixosModules.hw-common-ssd
|
|
];
|
|
|
|
boot = {
|
|
initrd.availableKernelModules = ["nvme" "sd_mod" "thunderbolt" "usb_storage" "xhci_pci"];
|
|
|
|
extraModprobeConfig = ''
|
|
options snd_hda_intel power_save=1
|
|
'';
|
|
|
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
|
};
|
|
|
|
networking.networkmanager = {
|
|
enable = true;
|
|
|
|
wifi = {
|
|
backend = "iwd";
|
|
powersave = true;
|
|
};
|
|
};
|
|
}
|