8 lines
207 B
Nix
8 lines
207 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [ ./default.nix ];
|
|
deployment = {
|
|
tags = [ "workstation" "intel" ];
|
|
targetHost = "192.168.1.156";
|
|
allowLocalDeployment = true;
|
|
};
|
|
}
|