mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
bash: use attrsOf instead of attrs
This commit is contained in:
parent
e85804efa2
commit
b690a8be2f
1 changed files with 2 additions and 2 deletions
|
@ -72,7 +72,7 @@ in
|
|||
|
||||
sessionVariables = mkOption {
|
||||
default = {};
|
||||
type = types.attrs;
|
||||
type = with types; attrsOf (either int str);
|
||||
example = { MAILCHECK = 30; };
|
||||
description = ''
|
||||
Environment variables that will be set for the Bash session.
|
||||
|
@ -81,12 +81,12 @@ in
|
|||
|
||||
shellAliases = mkOption {
|
||||
default = {};
|
||||
type = types.attrsOf types.str;
|
||||
example = { ll = "ls -l"; ".." = "cd .."; };
|
||||
description = ''
|
||||
An attribute set that maps aliases (the top level attribute names in
|
||||
this option) to command strings or directly to build outputs.
|
||||
'';
|
||||
type = types.attrs;
|
||||
};
|
||||
|
||||
enableAutojump = mkOption {
|
||||
|
|
Loading…
Reference in a new issue