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;