blob: af2a3771c50305a8d7d449aaccf6ee37930a5cc4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ vars, pkgs, ... }:
{
programs.fish = {
enable = true;
interactiveShellInit = ''
function fish_greeting
if status is-interactive
fastfetch
end
end
'';
};
}
|