aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/mercury/system/console.nix
blob: 9ecd4e062a3f2d627bb0425c1d1cba4513589751 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ pkgs, ... }:

{
  console = {
    enable = true;
    earlySetup = true;
  
    colors = [
      "000000" # Black
      "ff3b30" # Red
      "4cd964" # Green
      "ffcc00" # Yellow
      "0095ff" # Blue
      "ff2d55" # Magenta
      "5ac8fa" # Cyan
      "ffffff" # White
      "686868" # Bright Black
      "ff3b30" # Bright Red
      "4cd964" # Bright Green
      "ffcc00" # Bright Yellow
      "0095ff" # Bright Blue
      "ff2d55" # Bright Magenta
      "5ac8fa" # Bright Cyan
      "ffffff" # Bright White
    ];
  };
}