summaryrefslogtreecommitdiff
path: root/config/environment.nix
blob: 1b5428e1cf1e50e3703fbc504a82ed164d890bf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{lib, pkgs, ...}: {
  personal.environment = {
    enable = true;
    locale.enable = true;
  };
  programs.bash.promptInit = ''
    PS1="\n\[\033[1;32m\][\[\e]0;\u@$(hostname -f): \w\a\]\u@$(hostname -f):\w]\$\[\033[0m\] "
  '';
  console = {
    earlySetup = true;
    font = lib.mkForce "ter-v32n";
    packages = with pkgs; [ terminus_font ];
  };
}