mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 08:47:13 +08:00
12 lines
213 B
Nix
12 lines
213 B
Nix
{ config, lib, ... }:
|
|
{
|
|
imports = [
|
|
../intel
|
|
../../yoga.nix
|
|
];
|
|
|
|
services.xserver.wacom.enable = lib.mkDefault config.services.xserver.enable;
|
|
|
|
services.hardware.bolt.enable = lib.mkDefault true;
|
|
}
|