From 4be4146a966898e8cb7e0e6648a4f8dca2a08767 Mon Sep 17 00:00:00 2001 From: Jimbo Date: Thu, 27 Feb 2025 12:17:46 -0500 Subject: [PATCH] Fix fancyboot option --- hosts/rubble/id_ed25519.pub | 2 +- modules/system/devices/boot/plymouth/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/rubble/id_ed25519.pub b/hosts/rubble/id_ed25519.pub index d68e4cd..075c2ce 100644 --- a/hosts/rubble/id_ed25519.pub +++ b/hosts/rubble/id_ed25519.pub @@ -1 +1 @@ -ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIF4oyz5yAvmVZDdr3NL2AmlnCA6Z17b2Vj0FXj07DFiv jimbo@rubble +ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIF4oyz5yAvmVZDdr3NL2AmlnCA6Z17b2Vj0FXj07DFiv diff --git a/modules/system/devices/boot/plymouth/default.nix b/modules/system/devices/boot/plymouth/default.nix index 8c8c2de..6c674a2 100644 --- a/modules/system/devices/boot/plymouth/default.nix +++ b/modules/system/devices/boot/plymouth/default.nix @@ -2,7 +2,7 @@ { options.system.fancyboot.enable = lib.mkEnableOption "Enable Plymouth"; - config.boot = lib.mkIf config.system.desktop.enable { + config.boot = lib.mkIf config.system.fancyboot.enable { plymouth.enable = true; loader.timeout = lib.mkForce 0; consoleLogLevel = lib.mkForce 0;