feat: Enable system flake additions from external files

This commit is contained in:
2025-12-09 18:43:05 -05:00
committed by Hunter Halloran
parent b950e6b8ae
commit cbb5a72ca4
5 changed files with 126 additions and 31 deletions

View File

@@ -10,18 +10,17 @@
# Enable specific users for this device index
"1" = { extraUsers = [ "hdh20267" ]; };
"2" = { extraUsers = [ "hdh20267" ]; };
# Example of using an external flake for system configuration:
# "2" = { flakeUrl = "github:user/system-flake"; };
};
};
# Desktop Configuration
# Base specs: NVMe drive, 16G Swap
nix-desktop = {
count = 1;
};
nix-desktop.count = 1;
# Surface Tablet Configuration (Kiosk Mode)
# Base specs: eMMC drive, 8G Swap
nix-surface = {
count = 3;
};
nix-surface.count = 3;
}