blob: 39dfd701b68def32f74bf78b8551117170f5fe0c [file] [log] [blame]
Samuel Shuertcd9a7f52024-02-09 21:40:44 -05001{ inputs, ... }: {
Samuel Shuert3f828662024-02-10 20:45:50 -05002 home-manager.users.coded.programs.kitty = {
Samuel Shuertcd9a7f52024-02-09 21:40:44 -05003 enable = true;
Samuel Shuert3f828662024-02-10 20:45:50 -05004 theme = "Catppuccin-Macchiato";
5 shellIntegration.enableZshIntegration = true;
Samuel Shuertcd9a7f52024-02-09 21:40:44 -05006 };
7
8 home-manager.users.coded.programs.zsh.shellAliases = {
Samuel Shuert3f828662024-02-10 20:45:50 -05009 launch = "hyprctl dispatch exec $1";
Samuel Shuertcd9a7f52024-02-09 21:40:44 -050010 print3d = "sudo /run/current-system/sw/bin/pronsole.py";
11 };
12}