Files
nixos/pkgs/fish/biscuit.nix
T
biscuit 67402c3e54 upd
2025-05-20 07:23:25 -05:00

21 lines
506 B
Nix

{pkgs, ...}: {
programs.zoxide.enable = true;
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting
fish_vi_key_bindings
zoxide init fish | source
'';
shellAliases = {
ll = "ls -l";
upd = "sudo nixos-rebuild switch --flake ~/Nixos/#biscuit";
hupd = "home-manager switch --flake ~/Nixos/#biscuit";
agu = "pkill gjs & ags run ~/Nixos/pkgs/ags/biscuit/app.ts &";
};
plugins = with pkgs.fishPlugins; [
];
};
}