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 = ''