nix/host/dasha/Configuration.nix

12 lines
212 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
2024-04-24 04:58:58 +03:00
# Disable keyd.
services.keyd.enable = lib.mkForce false;
systemd.services.keyd-application-mapper.enable = lib.mkForce false;
}