Initial commit

This commit is contained in:
Craige McWhirter 2020-05-19 13:50:40 +10:00
parent 57dc96de2d
commit f72c499896
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA
2 changed files with 13 additions and 0 deletions

2
globals-defaults.nix Normal file
View file

@ -0,0 +1,2 @@
{
}

11
globals.nix Normal file
View file

@ -0,0 +1,11 @@
self: super: {
globals = import ./globals-defaults.nix // rec {
deploymentName = "mio-ops";
domain = "mcwhirter.io";
environment = "${deploymentName}";
};
}