Simplify caps-lock remapping

It turns out that all other methods I have tried overrides disabling the
touchpad while typing. Only interception-tools seems to work.
This commit is contained in:
2024-12-26 20:15:06 +01:00
parent 1483a5c46a
commit 0d37c9fe95
4 changed files with 63 additions and 607 deletions

View File

@@ -3,7 +3,6 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
xremap-flake.url = "github:xremap/nix-flake";
};
outputs = { self, nixpkgs, ... } @ inputs:
@@ -13,7 +12,7 @@
in
{
nixosConfigurations = {
nix = nixpkgs.lib.nixosSystem {
macbook = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
modules = [ ./nixos/configuration.nix ];
};