mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 05:29:46 +01:00
fish: shell{Abbrs,Aliases} has more specific type
Converted attrs to attrsOf str.
This commit is contained in:
parent
0740c257b1
commit
4f532948f7
1 changed files with 2 additions and 2 deletions
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue