14 lines
188 B
Nix
14 lines
188 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.fish = {
|
|
enable = true;
|
|
shellAliases = {
|
|
nix-fish = "nix-shell --command fish";
|
|
};
|
|
};
|
|
home.packages = with pkgs; [
|
|
bat
|
|
eza
|
|
];
|
|
}
|