2025-09-21 09:19:07 -07:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
{
|
|
|
|
|
# Manage /etc/shells and place add nix version of bash
|
|
|
|
|
environment.shells = [ pkgs.bash ];
|
2025-09-21 15:44:26 -07:00
|
|
|
|
|
|
|
|
# Enable ls colors
|
|
|
|
|
environment.variables = {
|
|
|
|
|
CLICOLOR = "1";
|
|
|
|
|
LSCOLORS = "ExFxBxDxCxegedabagacad";
|
|
|
|
|
};
|
|
|
|
|
environment.shellAliases.ls = "ls --color";
|
2025-09-21 09:19:07 -07:00
|
|
|
}
|