mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-05 01:37:24 +08:00
treewide: abstract away common configs into common/
This commit is contained in:
@@ -1,16 +1,19 @@
|
||||
{ lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ../../. ];
|
||||
imports = [
|
||||
../.
|
||||
../../../common/pc/laptop/ssd
|
||||
];
|
||||
|
||||
# TODO: boot loader
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
# TODO: drop
|
||||
hardware.opengl.driSupport32Bit = true;
|
||||
|
||||
services.xserver = {
|
||||
libinput.enable = lib.mkDefault true;
|
||||
|
||||
# TODO: we should not enable unfree drivers
|
||||
# when there is an alternative (i.e. nouveau)
|
||||
videoDrivers = [ "nvidia" ];
|
||||
|
||||
Reference in New Issue
Block a user