mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
15 lines
294 B
Nix
15 lines
294 B
Nix
{
|
|
imports = [
|
|
../.
|
|
../../../common/pc/laptop/ssd
|
|
];
|
|
|
|
# TODO: reverse compat
|
|
hardware.opengl.driSupport32Bit = true;
|
|
|
|
services.xserver = {
|
|
# TODO: we should not enable unfree drivers
|
|
# when there is an alternative (i.e. nouveau)
|
|
videoDrivers = [ "nvidia" ];
|
|
};
|
|
}
|