Remove unused shellInit configuration

This commit is contained in:
panotaka
2023-12-24 10:41:38 -04:00
parent d772a5fc3c
commit 751251404b

View File

@@ -1,8 +1,4 @@
{ {pkgs, ...}: {
pkgs,
lib,
...
}: {
home.packages = with pkgs; [ home.packages = with pkgs; [
grc grc
]; ];
@@ -20,8 +16,5 @@
src = pkgs.fishPlugins.autopair; src = pkgs.fishPlugins.autopair;
} }
]; ];
shellInit = lib.concatStringsSep "\n" [
"bind -k backspace backward-kill-word"
];
}; };
} }