refactor: Rename kiosk to tablet-kiosk

This commit is contained in:
UGA Innovation Factory
2025-12-10 10:31:09 -05:00
committed by Hunter Halloran
parent bcacfd2ca1
commit 826aa0c501
7 changed files with 5 additions and 15 deletions

View File

@@ -0,0 +1,29 @@
{
config,
lib,
pkgs,
inputs,
...
}:
with lib;
let
cfg = config.modules.sw;
basePackages = with pkgs; [
libcamera
chromium
glib
squeekboard
dconf
phoc
gsettings-desktop-schemas
];
in
{
environment.systemPackages = subtractLists cfg.excludePackages (basePackages ++ cfg.extraPackages);
programs.chromium = {
enable = true;
};
}