diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-03-13 01:58:56 +0100 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-03-13 01:58:56 +0100 |
| commit | 32606f06dd38c4964936fc4362ec3c502c90305f (patch) | |
| tree | 6de72a85411ca253141c95dd1bade2cc3ce9c493 /modules | |
| parent | modules/plymouth: Init (diff) | |
| download | nixos-config-32606f06dd38c4964936fc4362ec3c502c90305f.zip | |
modules/plymouth: Set a better theme
Diffstat (limited to '')
| -rw-r--r-- | modules/by-name/pl/plymouth/module.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/by-name/pl/plymouth/module.nix b/modules/by-name/pl/plymouth/module.nix index 58232a81..edfe7547 100644 --- a/modules/by-name/pl/plymouth/module.nix +++ b/modules/by-name/pl/plymouth/module.nix @@ -9,6 +9,7 @@ # If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. { config, + pkgs, lib, libraries, ... @@ -22,7 +23,11 @@ in { config = lib.mkIf cfg.enable { boot.plymouth = { enable = true; - theme = "bgrt"; + + theme = "lone"; + themePackages = [ + pkgs.adi1090x-plymouth-themes + ]; }; }; } |
