Change in folders organisation

This commit is contained in:
Laurent Gueret
2026-01-29 11:04:36 +01:00
parent 4d824e2be1
commit 7dfad1672f
25 changed files with 48 additions and 112 deletions
@@ -0,0 +1,23 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.boot.plymouth;
in
{
options.os.boot.plymouth = {
enable = mkEnableOption "Boot plymouth service";
};
config = mkIf cfg.enable {
boot.consoleLogLevel = 3;
boot.initrd.verbose = false;
boot.kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
];
boot.plymouth.enable = true;
};
}
@@ -0,0 +1,17 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.boot.systemd;
in
{
options.os.boot.systemd = {
enable = mkEnableOption "Boot systemd service";
};
config = mkIf cfg.enable {
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.consoleMode = "max";
};
}