hosts/display | attempting to build

This commit is contained in:
Don Harper 2025-10-17 22:58:49 -05:00
parent bb5d507db2
commit 82ca6f6e78
2 changed files with 13 additions and 5 deletions

View file

@ -11,6 +11,7 @@
tags = ["arm"];
targetUser = "don";
privilegeEscalationCommand = ["/run/wrappers/bin/doas"];
targetHost = "display.home.duckland.org";
# targetHost = "display.home.duckland.org";
targetHost = "192.168.1.142";
};
}

View file

@ -1,13 +1,20 @@
{ inputs, outputs, lib, config, pkgs, ... }: {
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
# environment.systemPackages = with pkgs; [ cog ];
environment.systemPackages = with pkgs; [ firefox ];
environment.systemPackages = with pkgs; [firefox];
services.cage = {
enable = true;
user = "don";
extraArguments = [ "-d" ];
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://homeassistant.home.duckland.org:8123/dashboard-pi/0";
"${pkgs.firefox}/bin/firefox --kiosk http://harper2.home.duckland.org:8123/dashboard-pi/0";
};
}