11.stylix/modules/console/nixos.nix
wawwior aa70426f8f
console: improve color consistency (#1388)
Link: https://github.com/nix-community/stylix/pull/1388

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-05-26 16:29:34 +02:00

28 lines
432 B
Nix

{ mkTarget, ... }:
mkTarget {
name = "console";
humanName = "the Linux kernel console";
configElements =
{ colors }:
{
console.colors = with colors; [
base00-hex
red
green
yellow
blue
magenta
cyan
base05-hex
base03-hex
red
green
yellow
blue
magenta
cyan
base07-hex
];
};
}