10 lines
154 B
Nix
10 lines
154 B
Nix
{ lib, config, ... }:
|
|
{
|
|
imports = [
|
|
../.
|
|
../../yoga.nix
|
|
];
|
|
|
|
services.xserver.wacom.enable = lib.mkDefault config.services.xserver.enable;
|
|
}
|