add login display to deck
This commit is contained in:
parent
09db4e94cd
commit
96077cfbf5
1 changed files with 15 additions and 0 deletions
|
|
@ -7,6 +7,7 @@
|
|||
../system-default.nix # Common NixOS system configuration
|
||||
../../../modules/desktop.nix
|
||||
../../../modules/wireguard.nix
|
||||
../../../modules/login-display.nix
|
||||
];
|
||||
|
||||
# Desktop module configuration (disable GDM for Jovian autoStart mode)
|
||||
|
|
@ -125,6 +126,20 @@
|
|||
pciutils
|
||||
usbutils
|
||||
unzip
|
||||
|
||||
smartmontools # Disk health monitoring (SMART)
|
||||
];
|
||||
|
||||
# Login display with SMART disk health status
|
||||
services.login-display = {
|
||||
enable = true;
|
||||
showSystemInfo = true;
|
||||
showSmartStatus = true;
|
||||
smartDrives = {
|
||||
"/dev/nvme0n1" = "System_SSD";
|
||||
"/dev/mmcblk0" = "SD_Card";
|
||||
};
|
||||
showDiskUsage = true;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue