mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
add kernelParams
This commit is contained in:
parent
c3fd38b3c7
commit
90489233da
@ -60,6 +60,8 @@ in
|
||||
services.openssh.ports = [ 22 ];
|
||||
boot.initrd.network.ssh.port = 22;
|
||||
|
||||
boot.kernelParams = [];
|
||||
|
||||
# Allow unfree packages.
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
@ -62,6 +62,8 @@ in
|
||||
services.openssh.ports = [ 2224 ];
|
||||
boot.initrd.network.ssh.port = 2225;
|
||||
|
||||
boot.kernelParams = [];
|
||||
|
||||
# Allow unfree packages.
|
||||
nixpkgs.config.allowUnfree = false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user