reworking pi display

This commit is contained in:
Don Harper 2025-10-19 20:00:28 -05:00
parent 9f0a8d314a
commit b99925ff12
5 changed files with 100 additions and 133 deletions

View file

@ -6,15 +6,12 @@
pkgs,
...
}: {
# environment.systemPackages = with pkgs; [ cog ];
environment.systemPackages = with pkgs; [firefox];
environment.systemPackages = with pkgs; [kdePackages.falkon cage];
services.cage = {
enable = true;
user = "don";
extraArguments = ["-d"];
program =
# "${pkgs.cog}/bin/cog --scale=1.4 http://homeassistant.home.duckland.org:8123/dashboard-pi/0";
"${pkgs.firefox}/bin/firefox --kiosk http://harper2.home.duckland.org:8123/dashboard-pi/0";
program = "${pkgs.kdePackages.falkon}/bin/falkon --fullscreen http://harper2.home.duckland.org:8123/dashboard-pi/0";
};
}