Squash merge main into testing

This commit is contained in:
Don Harper 2025-11-11 15:19:17 -06:00
parent 3cf83fb118
commit c27f617078
22 changed files with 334 additions and 289 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,26 @@
{ inputs, outputs, lib, config, pkgs, ... }: {
# environment.systemPackages = with pkgs; [ cog ];
environment.systemPackages = with pkgs; [ firefox ];
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
environment.systemPackages = with pkgs; [kdePackages.falkon cage wlsunset];
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://homeassistant.home.duckland.org:8123/dashboard-pi/0";
services = {
cage = {
enable = true;
user = "don";
extraArguments = ["-d"];
program = "${pkgs.kdePackages.falkon}/bin/falkon --fullscreen http://harper2.home.duckland.org:8123/dashboard-pi/0";
};
};
home-manager.users.don.services = {
wlsunset = {
enable = true;
latitude = 29.7;
longitude = -95.8;
};
};
}