2020-05-12 04:00:32 +00:00
|
|
|
# NixOps configuration for airgead
|
|
|
|
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
imports =
|
|
|
|
[
|
2021-03-03 06:37:08 +00:00
|
|
|
../networks/linode.nix
|
2021-03-03 05:52:21 +00:00
|
|
|
../profiles/cardano-node.nix
|
2020-08-10 11:11:18 +00:00
|
|
|
../secrets/airgead.nix
|
2020-05-12 04:00:32 +00:00
|
|
|
];
|
|
|
|
|
2020-07-30 03:00:11 +00:00
|
|
|
deployment.targetHost = "172.105.187.96";
|
2020-05-12 04:00:32 +00:00
|
|
|
|
|
|
|
networking.hostName = "airgead"; # Define your hostname.
|
|
|
|
|
|
|
|
system.stateVersion = "20.03"; # The version of NixOS originally installed
|
|
|
|
}
|