refactor: restructure config files

This commit is contained in:
2026-04-27 15:59:20 +02:00
parent bac6e4997b
commit 0b2ecd31b0
58 changed files with 6 additions and 2 deletions
+24
View File
@@ -0,0 +1,24 @@
{ ... }:
{
flake.modules.nixos.plymouth =
{ pkgs, ... }:
{
boot = {
consoleLogLevel = 3;
initrd.verbose = false;
kernelParams = [
"quiet"
"udev.log_priority=3"
"rd.systemd.show_status=false"
"vt.global_cursor_default=0"
];
plymouth = {
enable = true;
theme = "spinner_alt";
themePackages = [ pkgs.adi1090x-plymouth-themes ];
};
};
};
}