wip: console

Font changes to default after reload
This commit is contained in:
Sweetbread 2025-01-25 18:04:03 +03:00
parent e46c205fe3
commit 4f11c8139f
2 changed files with 24 additions and 0 deletions

View File

@ -11,6 +11,7 @@
./vpn.nix ./vpn.nix
./printing.nix ./printing.nix
./shutdown-on-lan.nix ./shutdown-on-lan.nix
./console.nix
]; ];
programs.hyprland.enable = true; programs.hyprland.enable = true;

23
nixos/modules/console.nix Normal file
View File

@ -0,0 +1,23 @@
{ 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"
];
};
}