10 lines
163 B
Nix
10 lines
163 B
Nix
{ lib, ... }: {
|
|
imports = [
|
|
./Filesystem.nix
|
|
../dasha/Tablet.nix
|
|
];
|
|
|
|
# Disable Kbd Interception.
|
|
services.interception-tools.enable = lib.mkForce false;
|
|
}
|