nix/host/laptop/Configuration.nix

10 lines
163 B
Nix
Raw Normal View History

2024-04-06 03:03:58 +03:00
{ lib, ... }: {
2024-03-29 09:05:08 +03:00
imports = [
./Filesystem.nix
2024-04-05 20:56:49 +03:00
../dasha/Tablet.nix
2024-03-29 09:05:08 +03:00
];
2024-04-06 00:08:35 +03:00
# Disable Kbd Interception.
services.interception-tools.enable = lib.mkForce false;
}