nixos-config/modules/users/fish/default.nix

30 lines
568 B
Nix
Raw Normal View History

2021-10-05 23:45:02 +02:00
{ pkgs, config, lib, ... }:
with lib;
let cfg = config.erwin.fish;
in {
options.erwin.fish = {
enable = mkOption {
description = "Enable fish shell";
type = types.bool;
default = false;
};
};
config = mkIf (cfg.enable) (let starship = pkgs.starship;
in {
programs.starship = {
enable = true;
enableFishIntegration = true;
};
programs.fish = {
enable = true;
# interactiveShellInit = ''
# source ("${starship}/bin/starship" init fish --print-full-init | psub)
# '';
};
});
}