support for ipxe boot ephemeral systems

This commit is contained in:
UGA Innovation Factory
2025-12-10 14:42:22 -05:00
parent a97848f2ee
commit 6e91b7e6d0
11 changed files with 307 additions and 6 deletions

View File

@@ -0,0 +1,28 @@
{
config,
lib,
pkgs,
inputs,
...
}:
lib.mkMerge [
(import ./kiosk-browser.nix {
inherit
config
lib
pkgs
inputs
;
})
(import ./net.nix {
inherit
config
lib
pkgs
inputs
;
})
{
services.openssh.enable = false;
}
]