From 665766f8bb1e36ea873ed7dd3ac06cef6045b78f Mon Sep 17 00:00:00 2001 From: Ryan Orendorff Date: Sun, 22 Sep 2019 23:54:08 -0700 Subject: [PATCH] fish: add examples for shellAliases, shellAbbrs --- modules/programs/fish.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/programs/fish.nix b/modules/programs/fish.nix index bdd0c870e..b5bf77f9c 100644 --- a/modules/programs/fish.nix +++ b/modules/programs/fish.nix @@ -62,6 +62,7 @@ in shellAliases = mkOption { type = types.attrs; default = {}; + example = { ".." = "cd .."; ll = "ls -l"; }; description = '' Set of aliases for fish shell. See for an option @@ -72,6 +73,7 @@ in shellAbbrs = mkOption { type = types.attrs; default = {}; + example = { l = "less"; gco = "git checkout"; }; description = '' Set of abbreviations for fish shell. '';