Skip to content

Instantly share code, notes, and snippets.

@cleverca22
Created October 12, 2017 23:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cleverca22/33737acf5c9e4d62ef4e05048cc64c90 to your computer and use it in GitHub Desktop.
Save cleverca22/33737acf5c9e4d62ef4e05048cc64c90 to your computer and use it in GitHub Desktop.
{ foo }:
{
network = {
enableRollback = true;
};
eeepc1 = {
deployment = {
targetHost = "192.168.123.21";
};
imports = [ ./eeepc.nix ];
_module.args.foo = foo;
};
eeepc2 = {
deployment.targetHost = "192.168.123.22";
imports = [ ./eeepc.nix ];
_module.args.foo = foo;
};
defaults = {
imports = [ ./core.nix ];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment