diff options
author | Griffin Smith <root@gws.fyi> | 2020-06-08T14·19-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-06-08T14·19-0400 |
commit | 77f3860a651ee7f35c8e65747c0c45fb001cfb0b (patch) | |
tree | 155c88c635600f507bbb7fd3b217843157b15fa2 /home | |
parent | d59b69e6a39249e4834202e00cf9a78c24e33ca7 (diff) |
add zshFunctions config option
Diffstat (limited to 'home')
-rw-r--r-- | home/modules/development.nix | 1 | ||||
-rw-r--r-- | home/modules/lib/zshFunctions.nix | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/home/modules/development.nix b/home/modules/development.nix index 8474456e678d..9bb24b256110 100644 --- a/home/modules/development.nix +++ b/home/modules/development.nix @@ -15,6 +15,7 @@ with lib; { imports = [ + ./lib/zshFunctions.nix ./development/kube.nix ./development/urbint.nix ]; diff --git a/home/modules/lib/zshFunctions.nix b/home/modules/lib/zshFunctions.nix new file mode 100644 index 000000000000..7c39b3478cfd --- /dev/null +++ b/home/modules/lib/zshFunctions.nix @@ -0,0 +1,21 @@ +{ config, lib, pkgs, ... }: + +with lib; + +{ + options = { + programs.zsh.functions = mkOption { + description = "An attribute set that maps function names to their source"; + default = {}; + type = with types; attrsOf (either str path); + }; + }; + + config.programs.zsh.initExtra = concatStringsSep "\n" ( + mapAttrsToList (name: funSrc: '' + function ${name}() { + ${funSrc} + } + '') config.programs.zsh.functions + ); +} |