task | formating updates

This commit is contained in:
Don Harper 2025-02-23 22:48:51 -06:00
parent 09ee501439
commit cca03c3a21
2 changed files with 5 additions and 6 deletions

View file

@ -1,6 +1,4 @@
{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [ ./default.nix ];
deployment = {
tags = [ "arm" ];
};
deployment = { tags = [ "arm" ]; };
}

View file

@ -2,8 +2,9 @@
environment.systemPackages = with pkgs; [ cog ];
services.cage = {
enable = true;
user = "don";
program = "${pkgs.cog}/bin/cog http://homeassistant.home.duckland.org:8123/dashboard-pi/0";
enable = true;
user = "don";
program =
"${pkgs.cog}/bin/cog http://homeassistant.home.duckland.org:8123/dashboard-pi/0";
};
}