17 lines
398 B
Nix
17 lines
398 B
Nix
|
# NixOps configuration for pàidh-dha
|
||
|
|
||
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
../clusters/pi3B_rack.nix
|
||
|
../roles/transmission.nix
|
||
|
];
|
||
|
|
||
|
# Comment out deployment when building the SD Image.
|
||
|
deployment.targetHost = "10.69.0.202";
|
||
|
networking.hostName = "paidh-dha"; # Define your hostname.
|
||
|
|
||
|
system.stateVersion = "19.09"; # The version of NixOS originally installed
|
||
|
}
|