From 4f532948f7d12d4f7c36817173c83be9138b7abd Mon Sep 17 00:00:00 2001 From: Ryan Orendorff Date: Mon, 23 Sep 2019 22:05:21 -0700 Subject: [PATCH] fish: shell{Abbrs,Aliases} has more specific type Converted attrs to attrsOf str. --- modules/programs/fish.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/programs/fish.nix b/modules/programs/fish.nix index 52ea9189a..57c6409f2 100644 --- a/modules/programs/fish.nix +++ b/modules/programs/fish.nix @@ -31,7 +31,7 @@ in }; shellAliases = mkOption { - type = types.attrs; + type = with types; attrsOf str; default = {}; example = { ".." = "cd .."; ll = "ls -l"; }; description = '' @@ -41,7 +41,7 @@ in }; shellAbbrs = mkOption { - type = types.attrs; + type = with types; attrsOf str; default = {}; example = { l = "less"; gco = "git checkout"; }; description = ''