13 lines
178 B
Nix
13 lines
178 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
let
|
||
|
inherit (lib) mkDefault;
|
||
|
in {
|
||
|
imports = [
|
||
|
../common
|
||
|
];
|
||
|
|
||
|
microsoft-surface.ipts.enable = true;
|
||
|
microsoft-surface.surface-control.enable = true;
|
||
|
}
|