diff --git a/modules/programs/bash.nix b/modules/programs/bash.nix index 14a158a24..92ce18d25 100644 --- a/modules/programs/bash.nix +++ b/modules/programs/bash.nix @@ -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 {