9 lines
265 B
Nix
9 lines
265 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
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";
|
|
};
|
|
}
|