aboutsummaryrefslogblamecommitdiff
path: root/home/fish/default.nix
blob: ffb8f318765b004c693b66c16ce6a956270741e4 (plain) (tree)
1
2
3
4
5
6
7


                              
                                    

                                                 
                                              





                             
{ config, lib, pkgs, ... }:
let cfg = config.my.home.fish;
in {
  options.my.home.fish = with lib; {
    enable = mkEnableOption "fish configuration";
  };
  config.programs.fish = lib.mkIf cfg.enable {
    enable = true;
    interactiveShellInit = ''
      set fish_greeting
    '';
  };
}