🚀 explicitly enable fish module

dev-docs
Moritz Böhme 2022-10-09 20:51:45 +02:00
parent 97f95b7a96
commit c327ef7aa5
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
2 changed files with 3 additions and 2 deletions

View File

@ -43,6 +43,7 @@ with lib;
variables = { EDITOR = "vim"; };
};
programs = {
fish.enable = true;
vim.enable = true;
helix.enable = true;
kakoune.enable = true;

View File

@ -16,9 +16,9 @@ in
{
options.my.programs.fish = {
enable = mkOption {
default = true;
default = false;
type = types.bool;
example = false;
example = true;
};
};