mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 11:36:10 +01:00
9 lines
171 B
Nix
9 lines
171 B
Nix
{ nixos, lib, pkgs, config, stdenv, ... }:
|
|
{
|
|
imports = [
|
|
./.
|
|
../yoga.nix
|
|
];
|
|
|
|
services.xserver.wacom.enable = lib.mkDefault config.services.xserver.enable;
|
|
}
|