17 lines
299 B
Nix
17 lines
299 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [./default.nix];
|
|
deployment = {
|
|
tags = ["arm"];
|
|
targetUser = "don";
|
|
privilegeEscalationCommand = ["/run/wrappers/bin/doas"];
|
|
# targetHost = "display.home.duckland.org";
|
|
targetHost = "192.168.1.142";
|
|
};
|
|
}
|