diff options
author | Silas Schöffel <sils@sils.li> | 2024-04-02 17:23:42 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-04-02 17:23:42 +0200 |
commit | 0e9d61723dc1882a3893c0296ae07f4f0b625a41 (patch) | |
tree | 0b54fb25ee8f9fe5e71d993214ec13df584fe8ac /modules/nixos/plymouth.nix | |
parent | flake.lock: update (diff) | |
download | nix-config-0e9d61723dc1882a3893c0296ae07f4f0b625a41.tar.gz nix-config-0e9d61723dc1882a3893c0296ae07f4f0b625a41.zip |
refactor(modules): use collision avoiding tree
Diffstat (limited to 'modules/nixos/plymouth.nix')
-rw-r--r-- | modules/nixos/plymouth.nix | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/nixos/plymouth.nix b/modules/nixos/plymouth.nix deleted file mode 100644 index 8e39220..0000000 --- a/modules/nixos/plymouth.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ - 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; - }; -} |