blob: e1d953ec92a4a7740658fa03fa069469d7f14dee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
network.description = "My NixOS Machinas";
network.enableRollback = true;
network.storage.legacy.databasefile = "~/.nixops/deployments.nixops";
comet = {
imports = [ ./comet/configuration.nix ];
deployment.targetHost = "comet.softwarefools.com";
};
aquarius = {
imports = [ ./aquarius/configuration.nix ];
deployment.targetHost = "aquarius";
};
}
|