Many changes

This commit is contained in:
2024-01-25 00:55:35 -07:00
commit f5f1a2b69c
56 changed files with 4123 additions and 0 deletions

4
modules/fish/default.nix Normal file
View File

@@ -0,0 +1,4 @@
{ ... }: {
# Although we are configuring fish in home manager, this is needed for vendor completions within fish.
programs.fish.enable = true;
}

16
modules/fish/home.nix Normal file
View File

@@ -0,0 +1,16 @@
{ pkgs, ... }: {
home.packages = [
pkgs.grc
pkgs.fishPlugins.grc
];
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting # Disable greeting
'';
shellAliases = {
l = "ls -lh";
};
};
}