Skip to content

Commit

Permalink
hosts/zatsune-nixos: add kernel params
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Sep 22, 2023
1 parent 0bc776d commit b126f8b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions hosts/zatsune-nixos/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,22 @@
../../home-manager/minimal.nix
];

boot.kernelParams = [
"nvme.shutdown_timeout=10"
"nvme_core.shutdown_timeout=10"
"libiscsi.debug_libiscsi_eh=1"
"crash_kexec_post_notifiers"

# VNC console
"console=tty1"

# x86_64-linux
"console=ttyS0"

# aarch64-linux
"console=ttyAMA0,115200"
];

disko.devices = import ./disk-config.nix;

device.type = "server";
Expand Down

0 comments on commit b126f8b

Please sign in to comment.