From 4f11c8139f2ed2361f66f0af6e020778e9ab52c2 Mon Sep 17 00:00:00 2001 From: Sweetbread Date: Sat, 25 Jan 2025 18:04:03 +0300 Subject: [PATCH] wip: console Font changes to default after reload --- nixos/modules/bundle.nix | 1 + nixos/modules/console.nix | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 nixos/modules/console.nix diff --git a/nixos/modules/bundle.nix b/nixos/modules/bundle.nix index 32b1779..daa2751 100644 --- a/nixos/modules/bundle.nix +++ b/nixos/modules/bundle.nix @@ -11,6 +11,7 @@ ./vpn.nix ./printing.nix ./shutdown-on-lan.nix + ./console.nix ]; programs.hyprland.enable = true; diff --git a/nixos/modules/console.nix b/nixos/modules/console.nix new file mode 100644 index 0000000..8354916 --- /dev/null +++ b/nixos/modules/console.nix @@ -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" + ]; + }; +}