nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 107c62cdb3368758edc6af2f53b7c365229e0d29
parent 91b6b6af3afd8f48869e00448464078801e7dc61
Author: Toni Brown <me@tb148.net>
Date:   Thu, 19 Mar 2026 19:39:03 +0800

update limine config

Diffstat:
Mconfiguration.nix | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/configuration.nix b/configuration.nix @@ -35,7 +35,19 @@ boot.loader.limine = { enable = true; efiSupport = true; + style = { + graphicalTerminal = { + background = "ffffffff"; + brightBackground = "585b70"; + foreground = "cdd6f4"; + brightForeground = "cdd6f4"; + palette = "1e1e2e;f38ba8;a6e3a1;f9e2af;89b4fa;f5c2e7;94e2d5;cdd6f4"; + brightPalette = "585b70;f38ba8;a6e3a1;f9e2af;89b4fa;f5c2e7;94e2d5;cdd6f4"; + }; + wallpapers = [pkgs.nixos-artwork.wallpapers.nineish-catppuccin-mocha-alt.kdeFilePath]; + }; }; + catppuccin.limine.enable = false; boot.loader.efi.canTouchEfiVariables = true; boot.plymouth.enable = true; boot.kernelPackages = pkgs.linuxPackages_latest;