display kiosk | increase scaling

This commit is contained in:
Don Harper 2025-03-09 12:19:49 -05:00
parent a841349267
commit 98c792a45b

View file

@ -1,4 +1,5 @@
{ inputs, outputs, lib, config, pkgs, ... }: {
# environment.systemPackages = with pkgs; [ cog ];
environment.systemPackages = with pkgs; [ cog ];
services.cage = {
@ -6,6 +7,6 @@
user = "don";
extraArguments = [ "-d" ];
program =
"${pkgs.cog}/bin/cog http://homeassistant.home.duckland.org:8123/dashboard-pi/0";
"${pkgs.cog}/bin/cog --scale=1.5 http://homeassistant.home.duckland.org:8123/dashboard-pi/0";
};
}