From 6b08c8bc5bbe5f697a38a0067a0f4dab012a4c20 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 28 Mar 2024 00:06:25 +0000 Subject: [PATCH] Add plymouth and lid close options --- machines/talos/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/machines/talos/configuration.nix b/machines/talos/configuration.nix index 269c44a..5ec6a1e 100644 --- a/machines/talos/configuration.nix +++ b/machines/talos/configuration.nix @@ -13,6 +13,7 @@ # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + boot.plymouth.enable = true; networking.hostName = "talos"; networking.networkmanager.enable = true; @@ -36,4 +37,7 @@ services.tailscale.enable = true; services.fstrim.enable = true; + + services.logind.lidSwitchDocked = "ignore"; + services.logind.lidSwitchExternalPower = "ignore"; } \ No newline at end of file