24 lines
477 B
Nix
24 lines
477 B
Nix
# NixOps configuration for airgead
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
imports =
|
|
[
|
|
../clusters/linode-encrypted.nix
|
|
../roles/cardano-node.nix
|
|
../roles/monitoring.nix
|
|
];
|
|
|
|
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
|
|
}
|