about summary refs log tree commit diff
path: root/users/fcuny/cli/shell.nix
blob: 0e6a7902da572248d4acbc1263c8bc6e59ab9ada (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ config, lib, pkgs, ... }:

{
  programs.fish = {
    enable = true;
    interactiveShellInit = ''
      set fish_greeting
    '';
  };
}