dotfiles/modules/os/cli/fish.nix

17 lines
282 B
Nix
Raw Permalink Normal View History

{ pkgs, config, lib, ... }:
let
cfg = config.my.cli.fish;
in {
options.my.cli.fish = {
enable = lib.mkEnableOption null // {
default = true;
};
};
config = lib.mkIf cfg.enable {
users.defaultUserShell = pkgs.fish;
programs.fish.enable = true;
};
}