universeair: Fix shortcuts, add zoom

This commit is contained in:
universelaptop
2024-02-04 13:58:57 -05:00
parent 06b11be630
commit 5aa9d049c5
2 changed files with 9 additions and 3 deletions

View File

@@ -49,6 +49,11 @@ in
bqn386 bqn386
]; ];
services.emacs = {
enable = true;
package = pkgs.mac-emacs;
};
environment.variables = { environment.variables = {
EDITOR = "emacs"; EDITOR = "emacs";
}; };
@@ -91,6 +96,7 @@ in
"nextcloud" "nextcloud"
"tidal" "tidal"
"bitwarden" "bitwarden"
"zoom-for-it-admins"
]; ];
# Apps to install outside of nix for when wanting to test/run # Apps to install outside of nix for when wanting to test/run
# things that... aren't used by other people who use nix, like # things that... aren't used by other people who use nix, like

View File

@@ -2,8 +2,8 @@
services.skhd = { services.skhd = {
enable = true; enable = true;
skhdConfig = '' skhdConfig = ''
cmd + shift - e : open ${pkgs.mac-emacs}/Applications/Emacs.app cmd + shift - e : emacsclient --create-frame --alternate-editor=""
cmd + shift + ctrl - e : open ${pkgs.kitty}/Applications/Kitty.app cmd + shift + ctrl - e : kitty -d ~ -1
''; '';
}; };
} }