mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
hardware/graphics: init from legacy
This commit is contained in:
parent
28b35bdd1c
commit
55964e1622
5 changed files with 41 additions and 20 deletions
|
@ -1,4 +1,7 @@
|
|||
{ config, lib, ... }:
|
||||
let
|
||||
cpuFlavor = "intel";
|
||||
in
|
||||
{
|
||||
# video driver
|
||||
boot.initrd.kernelModules = [ "i915" ];
|
||||
|
@ -8,13 +11,14 @@
|
|||
|
||||
my.hardware = {
|
||||
bluetooth.enable = true;
|
||||
firmware = {
|
||||
enable = true;
|
||||
cpuFlavor = cpuFlavor;
|
||||
};
|
||||
graphics.cpuFlavor = cpuFlavor;
|
||||
keychron.enable = true;
|
||||
nitrokey.enable = true;
|
||||
sound.enable = true;
|
||||
thunderbolt.enable = true;
|
||||
firmware = {
|
||||
enable = true;
|
||||
cpuFlavor = "intel";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue