From 48a879e2a00aeec40f192b8bd93e1690c6a499cd Mon Sep 17 00:00:00 2001 From: beatzaplenty Date: Wed, 15 Jul 2026 13:20:46 +1000 Subject: [PATCH] enable lish console --- installer.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/installer.nix b/installer.nix index 5dd0149..38a5d61 100644 --- a/installer.nix +++ b/installer.nix @@ -20,6 +20,14 @@ imports = [ # environment.etc."flake-url".text = "git+https://gitea.lan.ddnsgeek.com/beatzaplenty/nixos.git?ref=main#nixos"; +# Enable LISH +boot.kernelParams = [ "console=ttyS0,19200n8" ]; +boot.loader.grub.extraConfig = '' + serial --speed=19200 --unit=0 --word=8 --parity=no --stop=1; + terminal_input serial; + terminal_output serial; +''; + environment.etc."git-credentials".text = "https://beatzaplenty:2b7e178eeee4af437fc721295d59e9e19366fd02@gitea.lan.ddnsgeek.com"; #programs.git.enable = true;