You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
427 B

  1. { lib, pkgs, ... }:
  2. {
  3. imports = [
  4. ../.
  5. ../../../common/pc/laptop/ssd
  6. ];
  7. # TODO: boot loader
  8. boot.loader.systemd-boot.enable = true;
  9. boot.loader.efi.canTouchEfiVariables = true;
  10. # TODO: reverse compat
  11. hardware.opengl.driSupport32Bit = true;
  12. services.xserver = {
  13. # TODO: we should not enable unfree drivers
  14. # when there is an alternative (i.e. nouveau)
  15. videoDrivers = [ "nvidia" ];
  16. };
  17. }