mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-09-14 06:22:02 +02:00
machine/workman: init
This commit is contained in:
parent
c48b59fe72
commit
8c029fad44
14 changed files with 336 additions and 1 deletions
30
machines/workman/hardware-configuration.nix
Normal file
30
machines/workman/hardware-configuration.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue