From 583e60fb5c389bde0494b67da34c2b70797183ef Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Fri, 10 Oct 2025 01:30:15 +0200 Subject: [PATCH] add login display to vps --- hosts/nixos/vps/system.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/hosts/nixos/vps/system.nix b/hosts/nixos/vps/system.nix index 5cd14fe..b51b82b 100644 --- a/hosts/nixos/vps/system.nix +++ b/hosts/nixos/vps/system.nix @@ -8,6 +8,7 @@ ../../../modules/podman.nix ../../../modules/traefik.nix ../../../modules/borg-client.nix + ../../../modules/login-display.nix ]; # GRUB bootloader with UEFI support @@ -54,10 +55,6 @@ ]; }; - - # No additional host-specific packages needed - - # Borg backup configuration services.borgbackup-custom = { enable = true; @@ -90,6 +87,13 @@ ''; }; + services.login-display = { + enable = true; + showSystemInfo = true; + showSmartStatus = false; + showDiskUsage = true; + }; + # WireGuard VPN configuration (VPS as hub/server) services.wireguard-custom = { enable = true;