mio-ops/hosts/airgead.nix

24 lines
477 B
Nix
Raw Normal View History

2020-05-12 04:00:32 +00:00
# NixOps configuration for airgead
{ config, pkgs, lib, ... }:
{
imports =
[
../clusters/linode-encrypted.nix
2020-05-14 05:06:29 +00:00
../roles/cardano-node.nix
2020-05-28 04:21:36 +00:00
../roles/monitoring.nix
2020-05-12 04:00:32 +00:00
];
deployment.targetHost = "172.105.184.221";
networking.hostName = "airgead"; # Define your hostname.
nix.nixPath = [
"nixpkgs=https://nixos.org/channels/nixos-20.03/nixexprs.tar.xz"
];
system.stateVersion = "20.03"; # The version of NixOS originally installed
}