Added pi-coig to mio-ops

This commit is contained in:
Serĉanto de Scio 2019-12-09 16:23:39 +10:00
parent e5a598f794
commit 277272f923
Signed by: sercanto
GPG key ID: A4122FF3971B6865
2 changed files with 14 additions and 0 deletions

View file

@ -15,6 +15,7 @@
cuallaidh = import ../hosts/cuallaidh.nix; cuallaidh = import ../hosts/cuallaidh.nix;
pi-ceithir = import hosts/pi-ceithir.nix; pi-ceithir = import hosts/pi-ceithir.nix;
pi-coig = import hosts/pi-coig.nix;
pi-tri = import hosts/pi-tri.nix; pi-tri = import hosts/pi-tri.nix;
} }

View file

@ -3,7 +3,20 @@
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
{ {
imports = [
../clusters/pi3B_rack.nix
];
deployment.targetHost = "10.69.0.205";
networking.hostName = "pi-coig"; # Define your hostname. networking.hostName = "pi-coig"; # Define your hostname.
environment.systemPackages = with pkgs; [
];
nix.nixPath = [
"nixpkgs=https://nixos.org/channels/nixos-19.09/nixexprs.tar.xz"
];
system.stateVersion = "19.09"; # The version of NixOS originally installed
} }