fixed amd gpu at boot

This commit is contained in:
willifan 2024-05-20 19:42:52 +02:00
parent 326c2c3127
commit cfbcad4fed
2 changed files with 5 additions and 0 deletions

4
hosts/Puenktchen/amd.nix Normal file
View File

@ -0,0 +1,4 @@
{ pkgs, ... }:
{
boot.initrd.kernelModules = [ "amdgpu" ];
}

View File

@ -1,6 +1,7 @@
{ pkgs, ... }:
{
imports = [
./amd.nix
./hardware-configuration.nix
./disko.nix
];