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