2017-12-24 13:13:25 +01:00
|
|
|
{ lib, pkgs, ... }:
|
2016-10-20 20:53:52 +02:00
|
|
|
|
|
|
|
{
|
2017-12-25 00:21:05 +01:00
|
|
|
imports = [
|
|
|
|
../.
|
|
|
|
../../../common/pc/laptop/ssd
|
|
|
|
];
|
2016-10-20 20:53:52 +02:00
|
|
|
|
2017-12-25 00:21:05 +01:00
|
|
|
# TODO: boot loader
|
2016-10-20 20:53:52 +02:00
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
2017-12-25 22:26:29 +01:00
|
|
|
# TODO: reverse compat
|
2016-10-20 20:53:52 +02:00
|
|
|
hardware.opengl.driSupport32Bit = true;
|
|
|
|
|
2017-12-24 13:13:25 +01:00
|
|
|
services.xserver = {
|
|
|
|
# TODO: we should not enable unfree drivers
|
2017-12-24 15:19:38 +01:00
|
|
|
# when there is an alternative (i.e. nouveau)
|
2017-12-24 13:13:25 +01:00
|
|
|
videoDrivers = [ "nvidia" ];
|
|
|
|
};
|
2016-10-20 20:53:52 +02:00
|
|
|
}
|