add kernelParams

This commit is contained in:
Daniel Langbein 2023-09-23 17:58:12 +02:00
parent c3fd38b3c7
commit 90489233da
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
3 changed files with 8 additions and 0 deletions

View File

@ -60,6 +60,8 @@ in
services.openssh.ports = [ 22 ]; services.openssh.ports = [ 22 ];
boot.initrd.network.ssh.port = 22; boot.initrd.network.ssh.port = 22;
boot.kernelParams = [];
# Allow unfree packages. # Allow unfree packages.
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;

View File

@ -60,6 +60,10 @@ in
services.openssh.ports = [ 22 ]; services.openssh.ports = [ 22 ];
boot.initrd.network.ssh.port = 22; boot.initrd.network.ssh.port = 22;
# Systemd Journal entry:
# S Sat Sep 23 16:11:52 2023 p4 kernel: TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.
boot.kernelParams = [ "tsc=unstable" ];
# Allow unfree packages. # Allow unfree packages.
nixpkgs.config.allowUnfree = false; nixpkgs.config.allowUnfree = false;

View File

@ -62,6 +62,8 @@ in
services.openssh.ports = [ 2224 ]; services.openssh.ports = [ 2224 ];
boot.initrd.network.ssh.port = 2225; boot.initrd.network.ssh.port = 2225;
boot.kernelParams = [];
# Allow unfree packages. # Allow unfree packages.
nixpkgs.config.allowUnfree = false; nixpkgs.config.allowUnfree = false;