diff --git a/hosts/display/kiosk.nix b/hosts/display/kiosk.nix index 085170f..e5f8975 100644 --- a/hosts/display/kiosk.nix +++ b/hosts/display/kiosk.nix @@ -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"; }; }