dotfiles/nix/modules/nixos/desktop/screenkey.nix

14 lines
295 B
Nix
Raw Normal View History

2024-11-21 18:57:35 +00:00
{ 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;
};
}