{ config, pkgs, ... }@attrs: let cfg = config.services.getty; in { environment = { etc = { "inputrc".source = ./config/etc/inputrc; }; shellAliases = { ls = "ls --color=auto"; ll = "ls --color=auto -lha"; grep = "grep --color=auto"; ip = "ip -color=auto"; vi = "nvim"; }; variables = { EDITOR = "nvim"; HISTSIZE = 20000; HISTTIMEFORMAT = "%F %T "; }; }; }