From 90489233da794446e406b1e8ce11083ca7b25945 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Sat, 23 Sep 2023 17:58:12 +0200 Subject: [PATCH] add kernelParams --- hosts/yodaTab/configuration.nix | 2 ++ hosts/yodaTux/configuration.nix | 4 ++++ hosts/yodaYoga/configuration.nix | 2 ++ 3 files changed, 8 insertions(+) diff --git a/hosts/yodaTab/configuration.nix b/hosts/yodaTab/configuration.nix index 215c97a..3b7be59 100644 --- a/hosts/yodaTab/configuration.nix +++ b/hosts/yodaTab/configuration.nix @@ -60,6 +60,8 @@ in services.openssh.ports = [ 22 ]; boot.initrd.network.ssh.port = 22; + boot.kernelParams = []; + # Allow unfree packages. nixpkgs.config.allowUnfree = true; diff --git a/hosts/yodaTux/configuration.nix b/hosts/yodaTux/configuration.nix index 9235a01..cd44f1b 100644 --- a/hosts/yodaTux/configuration.nix +++ b/hosts/yodaTux/configuration.nix @@ -60,6 +60,10 @@ in services.openssh.ports = [ 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. nixpkgs.config.allowUnfree = false; diff --git a/hosts/yodaYoga/configuration.nix b/hosts/yodaYoga/configuration.nix index 47cf713..ada54c6 100644 --- a/hosts/yodaYoga/configuration.nix +++ b/hosts/yodaYoga/configuration.nix @@ -62,6 +62,8 @@ in services.openssh.ports = [ 2224 ]; boot.initrd.network.ssh.port = 2225; + boot.kernelParams = []; + # Allow unfree packages. nixpkgs.config.allowUnfree = false;