summaryrefslogtreecommitdiff
path: root/config/environment.nix
diff options
context:
space:
mode:
Diffstat (limited to 'config/environment.nix')
-rw-r--r--config/environment.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/config/environment.nix b/config/environment.nix
index 31e9815..1b5428e 100644
--- a/config/environment.nix
+++ b/config/environment.nix
@@ -1,4 +1,4 @@
-{...}: {
+{lib, pkgs, ...}: {
personal.environment = {
enable = true;
locale.enable = true;
@@ -6,4 +6,9 @@
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 ];
+ };
}