23 lines
509 B
Nix
23 lines
509 B
Nix
# NixOps configuration for paidh-coig
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../clusters/pi3B_rack.nix
|
|
];
|
|
|
|
# Comment out deployment when building the SD Image.
|
|
deployment.targetHost = "10.69.0.205";
|
|
networking.hostName = "pi-coig"; # Define your hostname.
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
];
|
|
|
|
nix.nixPath = [
|
|
"nixpkgs=https://nixos.org/channels/nixos-20.03/nixexprs.tar.xz"
|
|
];
|
|
|
|
system.stateVersion = "19.09"; # The version of NixOS originally installed
|
|
}
|