nixos-config/home/fish.nix

12 lines
199 B
Nix
Raw Normal View History

2021-04-22 16:21:30 +02:00
{ config, lib, ... }:
let
cfg = config.my.home.fish;
in
{
options.my.home.fish.enable = lib.mkEnableOption "Fish shell";
config = lib.mkIf cfg.enable {
programs.fish.enable = true;
};
}