summaryrefslogtreecommitdiff
path: root/hermes
diff options
context:
space:
mode:
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";
- };
};
}