From 95f505edfbcc3b745c8f31bd0587450074149c1d Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Wed, 4 Sep 2024 22:16:59 +0200 Subject: [PATCH] yodaTab: keyboard and systemd during boot --- hosts/yodaTab/configuration.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/yodaTab/configuration.nix b/hosts/yodaTab/configuration.nix index 23bee9b..56238d0 100644 --- a/hosts/yodaTab/configuration.nix +++ b/hosts/yodaTab/configuration.nix @@ -66,7 +66,14 @@ #yoda.btrfsMounts = yoda.btrfsFileSystems; fileSystems."/mnt/512gb".options = [ "noatime" "commit=60" ]; # Ext4 - boot.kernelParams = []; + # Fix touchpad/keyboard issue during boot. + # TODO neither touch nor keyboard work + # TODO try again with initrd.systemd.enable, see below. but disable Plymouth in that case + #boot.initrd.unl0kr.enable = true; + + # Motivation behind bare bones systemd-based initrd: https://github.com/NixOS/nixpkgs/pull/164943 + boot.initrd.systemd.enable = true; + boot.kernelPackages = pkgs.linuxPackages_latest; # Most users should never change this value after the initial install, for any reason, even if you've upgraded your system to a new NixOS release.