From 0e9d61723dc1882a3893c0296ae07f4f0b625a41 Mon Sep 17 00:00:00 2001 From: Silas Schöffel Date: Tue, 2 Apr 2024 17:23:42 +0200 Subject: refactor(modules): use collision avoiding tree --- modules/nixos/sils/plymouth.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 modules/nixos/sils/plymouth.nix (limited to 'modules/nixos/sils/plymouth.nix') diff --git a/modules/nixos/sils/plymouth.nix b/modules/nixos/sils/plymouth.nix new file mode 100644 index 0000000..8e39220 --- /dev/null +++ b/modules/nixos/sils/plymouth.nix @@ -0,0 +1,12 @@ +{ + config, + lib, + ... +}: let + cfg = config.sils.plymouth; +in { + options.sils.plymouth.enable = lib.mkEnableOption "Enable Plymouth"; + config = lib.mkIf cfg.enable { + boot.plymouth.enable = true; + }; +} -- cgit v1.3.1