Move all files

This commit is contained in:
Florian RICHER 2024-05-25 01:32:48 +02:00
parent d0e303d0f9
commit 34c8b954e5
45 changed files with 352 additions and 645 deletions

View file

@ -0,0 +1,16 @@
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.modules.system.plymouth;
in
{
options.modules.system.plymouth = {
enable = mkEnableOption ''
Enable plymouth with my custom configurations
'';
};
config = mkIf cfg.enable {
boot.plymouth.enable = true;
};
}