11.stylix/modules/console/nixos.nix
2025-05-22 07:44:20 -07: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
base06-hex
];
};
}