nixos-config/modules/host/console.nix
2025-02-13 23:53:19 +03:00

24 lines
368 B
Nix

{ pkgs, ... }: {
console = {
font = "${pkgs.kbd}/share/consolefonts/LatArCyrHeb-19.psfu.gz";
colors = [
"16161E"
"1A1B26"
"2F3549"
"444B6A"
"787C99"
"787C99"
"CBCCD1"
"D5D6DB"
"F7768E"
"FF9E64"
"E0AF68"
"41A6B5"
"7DCFFF"
"7AA2F7"
"BB9AF7"
"D18616"
];
};
}