(laptop) Gen 16: broke up laptop default.nix into modules, added git config

This commit is contained in:
pagedmov
2024-10-14 02:39:01 -04:00
parent f12238962e
commit 395fa72cbf
9 changed files with 126 additions and 97 deletions

13
hosts/laptop/boot.nix Normal file
View File

@@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
boot = {
kernelModules = ["acpi_call"];
extraModulePackages = with config.boot.kernelPackages;
[
acpi_call
cpupower
]
++ [pkgs.cpupower-gui];
};
}