summaryrefslogtreecommitdiff
path: root/modules/programs/fish.nix
diff options
context:
space:
mode:
authorMichael Hoang <Enzime@users.noreply.github.com>2024-04-20 02:24:36 +1000
committerGitHub <noreply@github.com>2024-04-20 02:24:36 +1000
commit9e7c20ffd056e406ddd0276ee9d89f09c5e5f4ed (patch)
tree25ca5e08d476298b84d6fd082041682e0d7e7560 /modules/programs/fish.nix
parenteb25dc61a62efcdf47efce6cb17cd5cb3c8f2719 (diff)
parentdef1e23be848848400d1d097d4f044e3c401f9dd (diff)
Merge pull request #932 from wegank/mddoc-remove
treewide: remove lib.mdDoc
Diffstat (limited to 'modules/programs/fish.nix')
-rw-r--r--modules/programs/fish.nix22
1 files changed, 11 insertions, 11 deletions
diff --git a/modules/programs/fish.nix b/modules/programs/fish.nix
index 287cc71..77276e6 100644
--- a/modules/programs/fish.nix
+++ b/modules/programs/fish.nix
@@ -51,7 +51,7 @@ in
enable = mkOption {
default = false;
- description = lib.mdDoc ''
+ description = ''
Whether to configure fish as an interactive shell.
'';
type = types.bool;
@@ -60,7 +60,7 @@ in
useBabelfish = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc ''
+ description = ''
If enabled, the configured environment will be translated to native fish using [babelfish](https://github.com/bouk/babelfish).
Otherwise, [foreign-env](https://github.com/oh-my-fish/plugin-foreign-env) will be used.
'';
@@ -69,7 +69,7 @@ in
babelfishPackage = mkOption {
type = types.package;
default = pkgs.babelfish;
- description = lib.mdDoc ''
+ description = ''
The babelfish package to use when useBabelfish is
set to true.
'';
@@ -78,7 +78,7 @@ in
vendor.config.enable = mkOption {
type = types.bool;
default = true;
- description = lib.mdDoc ''
+ description = ''
Whether fish should source configuration snippets provided by other packages.
'';
};
@@ -86,7 +86,7 @@ in
vendor.completions.enable = mkOption {
type = types.bool;
default = true;
- description = lib.mdDoc ''
+ description = ''
Whether fish should use completion files provided by other packages.
'';
};
@@ -94,14 +94,14 @@ in
vendor.functions.enable = mkOption {
type = types.bool;
default = true;
- description = lib.mdDoc ''
+ description = ''
Whether fish should autoload fish functions provided by other packages.
'';
};
shellAliases = mkOption {
default = config.environment.shellAliases;
- description = lib.mdDoc ''
+ description = ''
Set of aliases for fish shell. See {option}`environment.shellAliases`
for an option format description.
'';
@@ -110,7 +110,7 @@ in
shellInit = mkOption {
default = "";
- description = lib.mdDoc ''
+ description = ''
Shell script code called during fish shell initialisation.
'';
type = types.lines;
@@ -118,7 +118,7 @@ in
loginShellInit = mkOption {
default = "";
- description = lib.mdDoc ''
+ description = ''
Shell script code called during fish login shell initialisation.
'';
type = types.lines;
@@ -126,7 +126,7 @@ in
interactiveShellInit = mkOption {
default = "";
- description = lib.mdDoc ''
+ description = ''
Shell script code called during interactive fish shell initialisation.
'';
type = types.lines;
@@ -134,7 +134,7 @@ in
promptInit = mkOption {
default = "";
- description = lib.mdDoc ''
+ description = ''
Shell script code used to initialise fish prompt.
'';
type = types.lines;