Add screenkey

This commit is contained in:
Oliver Davies 2024-11-21 18:57:35 +00:00
parent b480910b98
commit 664f8e37ae
2 changed files with 14 additions and 0 deletions

View file

@ -7,6 +7,7 @@
./i3.nix
./immich.nix
./jellyfin.nix
./screenkey.nix
./xbanish.nix
];
}

View file

@ -0,0 +1,13 @@
{ pkgs, username, ... }:
{
environment.systemPackages = with pkgs; [ screenkey ];
home-manager.users.${username}.xdg.configFile."screenkey.json".text = builtins.toJSON {
key_mode = "composed";
mods_mode = "emacs";
persist = true;
size = "small";
timeout = 0.25;
};
}