home: fish: enable by default

This commit is contained in:
Antoine Martin 2021-07-29 12:20:30 +02:00
parent ba1e18165b
commit 1d75c36f9e
4 changed files with 1 additions and 4 deletions

View file

@ -3,7 +3,7 @@ let
cfg = config.my.home.fish;
in
{
options.my.home.fish.enable = lib.mkEnableOption "Fish shell";
options.my.home.fish.enable = (lib.mkEnableOption "Fish shell") // { default = true; };
config = lib.mkIf cfg.enable {
programs.fish = {