mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
8 lines
110 B
Nix
8 lines
110 B
Nix
{ config, pkgs, lib, ... }:
|
|
with lib;
|
|
let
|
|
inherit (cfg);
|
|
in
|
|
{
|
|
boot.initrd.kernelModules = [ "amdgpu" ];
|
|
}
|