This commit is contained in:
m3tam3re
2024-09-03 18:01:56 +02:00
parent d20945d5f3
commit 1f6e2b3a64
6 changed files with 83 additions and 2 deletions

View File

@ -0,0 +1,31 @@
{pkgs, ...}: {
imports = [
./fish.nix
];
programs.zoxide = {
enable = true;
enableFishIntegration = true;
};
programs.eza = {
enable = true;
enableFishIntegration = true;
enableBashIntegration = true;
extraOptions = ["-l" "--icons" "--git" "-a"];
};
programs.bat = {enable = true;};
home.packages = with pkgs; [
coreutils
fd
htop
httpie
jq
procs
ripgrep
tldr
zip
];
}

View File

@ -0,0 +1,32 @@
{
config,
lib,
...
}:
with lib; let
cfg = config.features.cli.fish;
in {
options.features.cli.fish.enable = mkEnableOption "enable extended fish configuration";
config = mkIf cfg.enable {
programs.fish = {
enable = true;
loginShellInit = ''
set -x NIX_PATH nixpkgs=channel:nixos-unstable
set -x NIX_LOG info
set -x TERMINAL kitty
if test (tty) = "/dev/tty1"
exec Hyprland &> /dev/null
end
'';
shellAbbrs = {
".." = "cd ..";
"..." = "cd ../..";
ls = "eza";
grep = "rg";
ps = "procs";
};
};
};
}