Files
NixMachines/machines/universeair/skhd.nix

10 lines
218 B
Nix

{config, pkgs, lib, ...}: {
services.skhd = {
enable = true;
skhdConfig = ''
cmd + shift - e : open '${pkgs.me-emacs}/Applications/Emacs.app'
cmd + shift + ctrl - e : kitty -d ~ -1
'';
};
}