Files
athenix/sw/stateless-kiosk/default.nix
UGA Innovation Factory d1d0b44ea2 inline docs
2025-12-10 14:46:58 -05:00

31 lines
481 B
Nix

# This module defines the software stack for a stateless kiosk.
# It includes a custom Firefox wrapper, Cage (Wayland kiosk compositor), and specific networking configuration.
{
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;
}
]