diff options
| author | Leonardo <noreply@leoflo.me> | 2026-01-15 16:43:08 +0100 |
|---|---|---|
| committer | Leonardo <noreply@leoflo.me> | 2026-01-15 16:43:08 +0100 |
| commit | aae66010d342ea700a5c0525bdcaa31f2e7d40a8 (patch) | |
| tree | 2020e3dafc0eb21fc835393d6ce5c1c1de0962ae | |
| parent | bf7459b6dc013ad4fec1135b45684c4c5bc5fd33 (diff) | |
| download | nixos-aae66010d342ea700a5c0525bdcaa31f2e7d40a8.tar.gz nixos-aae66010d342ea700a5c0525bdcaa31f2e7d40a8.zip | |
semplificato il processo di boot
| -rw-r--r-- | hermes/nixos/boot.nix | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/hermes/nixos/boot.nix b/hermes/nixos/boot.nix index 73c1469..dcb773d 100644 --- a/hermes/nixos/boot.nix +++ b/hermes/nixos/boot.nix @@ -1,19 +1,8 @@ -{config, ...}: { +{...}: { boot = { - consoleLogLevel = 3; + consoleLogLevel = 4; - kernelParams = [ - "quiet" - "splash" - "udev.log_priority=3" - "boot.shell_on_fail" - ]; - - extraModulePackages = with config.boot.kernelPackages; [ - v4l2loopback - ]; - - extraModprobeConfig = "options v4l2loopback devices=1 video_nr=1 card_label=\"OBS Cam\" exclusive_caps=1"; + kernelParams = [ "boot.shell_on_fail" ]; loader = { timeout = 3; @@ -22,10 +11,5 @@ }; supportedFilesystems = [ "exfat" "ntfs" ]; - - plymouth = { - enable = true; - theme = "bgrt"; - }; }; } |
