mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 01:44:40 +02:00
30 lines
518 B
Nix
30 lines
518 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cpuFlavor = "amd";
|
|
in
|
|
{
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
my.hardware = {
|
|
bluetooth.enable = true;
|
|
debug.enable = true;
|
|
drive-monitor.enable = true;
|
|
firmware = {
|
|
enable = true;
|
|
inherit cpuFlavor;
|
|
};
|
|
graphics = {
|
|
enable = true;
|
|
inherit cpuFlavor;
|
|
};
|
|
id-card.enable = true;
|
|
keychron.enable = true;
|
|
monitor.enable = true;
|
|
sound.enable = true;
|
|
thunderbolt.enable = true;
|
|
yubikey.enable = true;
|
|
};
|
|
}
|