nix/host/dasha/Configuration.nix

11 lines
168 B
Nix
Raw Normal View History

2024-04-04 21:55:44 +03:00
{ lib, ... }: {
imports = [
2024-03-29 09:05:08 +03:00
./Filesystem.nix
./Tablet.nix
2024-03-29 09:05:08 +03:00
./Vpn.nix
];
2024-04-04 21:55:44 +03:00
# Disable Kbd Interception.
services.interception-tools.enable = lib.mkForce false;
}