Migrate kiosk-entryway to NixOS from MX Linux

This commit is contained in:
Gene Liverman 2025-04-02 22:23:35 -04:00
parent d0591e2bf3
commit bb544798aa
No known key found for this signature in database
9 changed files with 301 additions and 50 deletions

View file

@ -0,0 +1,23 @@
{ ... }: {
home.stateVersion = "24.11";
programs = {
chromium = {
enable = true;
commandLineArgs = [
"--app=http://192.168.22.22:8123/kiosk-entryway/immich?kiosk"
"--kiosk"
"--noerrdialogs"
"--disable-infobars"
"--no-first-run"
"--ozone-platform=wayland"
"--enable-features=OverlayScrollbar"
"--start-maximized"
"--force-dark-mode"
"--hide-crash-restore-bubble"
];
};
};
}