mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-05 02:29:40 +01:00
11 lines
191 B
Nix
11 lines
191 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ../. ];
|
|
|
|
boot.extraModprobeConfig = lib.mkDefault ''
|
|
options snd_hda_intel enable=0,1
|
|
'';
|
|
|
|
services.xserver.videoDrivers = [ "ati" ];
|
|
}
|