refactor: Fully modularize the working system components to be more

reuasable
This commit is contained in:
2025-12-09 17:38:41 -05:00
committed by Hunter Halloran
parent 0e5c993a26
commit ebb70eca07
31 changed files with 923 additions and 754 deletions

26
inventory.nix Normal file
View File

@@ -0,0 +1,26 @@
{
# Laptop Configuration
# Base specs: NVMe drive, 34G Swap
nix-laptop = {
count = 2;
devices = {
# Override example:
# "2" = { swapSize = "64G"; };
# Enable specific users for this device index
"1" = { extraUsers = [ "hdh20267" ]; };
};
};
# Desktop Configuration
# Base specs: NVMe drive, 16G Swap
nix-desktop = {
count = 1;
};
# Surface Tablet Configuration (Kiosk Mode)
# Base specs: eMMC drive, 8G Swap
nix-surface = {
count = 3;
};
}