Base of Nix Configuration

This commit is contained in:
2026-01-24 15:52:13 +01:00
commit 02082e2dd8
45 changed files with 3059 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{ lib, config, ... }:
with lib;
let
cfg = config.within.boot.plymouth;
in
{
options.within.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;
};
}