{ 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 ''; }; }