summaryrefslogtreecommitdiff
path: root/hermes
diff options
context:
space:
mode:
authorLeonardo <noreply@leoflo.me>2026-01-15 16:43:08 +0100
committerLeonardo <noreply@leoflo.me>2026-01-15 16:43:08 +0100
commitaae66010d342ea700a5c0525bdcaa31f2e7d40a8 (patch)
tree2020e3dafc0eb21fc835393d6ce5c1c1de0962ae /hermes
parentbf7459b6dc013ad4fec1135b45684c4c5bc5fd33 (diff)
downloadnixos-aae66010d342ea700a5c0525bdcaa31f2e7d40a8.tar.gz
nixos-aae66010d342ea700a5c0525bdcaa31f2e7d40a8.zip
semplificato il processo di boot
Diffstat (limited to 'hermes')
-rw-r--r--hermes/nixos/boot.nix22
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";
- };
};
}