feat: Export formatter and lxc configuration from flake

This commit is contained in:
UGA Innovation Factory
2025-12-10 14:52:34 +00:00
committed by Hunter Halloran
parent faf4afcd3b
commit 01d1a36650
23 changed files with 742 additions and 308 deletions

View File

@@ -24,11 +24,15 @@
devices = {
# Override example:
# "2" = { swapSize = "64G"; };
# Enable specific users for this device index
"1" = { extraUsers = [ "hdh20267" ]; };
"2" = { extraUsers = [ "hdh20267" ]; };
"1" = {
extraUsers = [ "hdh20267" ];
};
"2" = {
extraUsers = [ "hdh20267" ];
};
# Example of using an external flake for system configuration:
# "2" = { flakeUrl = "github:user/system-flake"; };
};
@@ -41,4 +45,14 @@
# Surface Tablet Configuration (Kiosk Mode)
# Base specs: eMMC drive, 8G Swap
nix-surface.count = 3;
# LXC Container Configuration
nix-lxc = {
count = 1;
devices = {
"1" = {
hostname = "nix-builder";
};
};
};
}