20 lines
473 B
Nix
20 lines
473 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
# environment.systemPackages = with pkgs; [ cog ];
|
|
environment.systemPackages = with pkgs; [firefox];
|
|
|
|
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";
|
|
};
|
|
}
|