hosts/display | colmena - use local interface and not ts

This commit is contained in:
Don Harper 2025-09-29 19:43:01 -05:00
parent a061c1d546
commit 41cc921115

View file

@ -1,8 +1,16 @@
{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [ ./default.nix ];
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [./default.nix];
deployment = {
tags = [ "arm" ];
tags = ["arm"];
targetUser = "don";
privilegeEscalationCommand = [ "/run/wrappers/bin/doas" ];
privilegeEscalationCommand = ["/run/wrappers/bin/doas"];
targetHost = "display.home.duckland.org";
};
}