From cca03c3a21de5047c6d68e00bd84d4a4a7bbf280 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Sun, 23 Feb 2025 22:48:51 -0600 Subject: [PATCH] task | formating updates --- hosts/pi1/colmena.nix | 4 +--- hosts/pi1/kiosk.nix | 7 ++++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/hosts/pi1/colmena.nix b/hosts/pi1/colmena.nix index 725b694..755457f 100644 --- a/hosts/pi1/colmena.nix +++ b/hosts/pi1/colmena.nix @@ -1,6 +1,4 @@ { inputs, outputs, lib, config, pkgs, ... }: { imports = [ ./default.nix ]; - deployment = { - tags = [ "arm" ]; - }; + deployment = { tags = [ "arm" ]; }; } diff --git a/hosts/pi1/kiosk.nix b/hosts/pi1/kiosk.nix index 5a6de7b..acafead 100644 --- a/hosts/pi1/kiosk.nix +++ b/hosts/pi1/kiosk.nix @@ -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"; }; }