refactor nixos config

This commit is contained in:
2025-12-12 21:42:42 +03:00
parent 732f6f89a5
commit 737b10813b
14 changed files with 158 additions and 135 deletions
+29
View File
@@ -0,0 +1,29 @@
{ config, pkgs, lib, ... }:
{
boot = {
plymouth = {
enable = true;
theme = "double";
themePackages = with pkgs;
[
(adi1090x-plymouth-themes.override {
selected_themes = [ "double" ];
})
];
};
consoleLogLevel = 3;
initrd.verbose = false;
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"udev.log_priority=3"
"rd.systemd.show_status=auto"
"kvm.enable_virt_at_load=0"
];
loader.timeout = 0;
};
}