From 78be860624620b23fb3d8d1a889638be4ab37c4a Mon Sep 17 00:00:00 2001 From: NullBite <me@nullbite.com> Date: Sat, 30 Mar 2024 13:31:21 -0400 Subject: [PATCH] home: make icat not depend on kitty (just kitten) --- home/profile/base.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/profile/base.nix b/home/profile/base.nix index 56acaa4..cc6dfa8 100644 --- a/home/profile/base.nix +++ b/home/profile/base.nix @@ -30,7 +30,7 @@ in # TODO move this stuff to a zsh.nix or something; this is just a quick fix so home.sessionVariables works home.shellAliases = { v = "nvim"; - icat = "kitty +kitten icat"; + icat = "kitten icat"; }; programs.fzf.enable = lib.mkDefault true; programs.fzf.enableZshIntegration = lib.mkDefault true;