Initial commit

This commit is contained in:
Serĉanto de Scio 2019-06-27 11:43:23 +10:00
parent a12ce5d781
commit ade1aaff5b
Signed by: sercanto
GPG key ID: A4122FF3971B6865

View file

@ -0,0 +1,31 @@
# NixOps configuration for the Raspberry Pi 3B Rack
{
network = {
description = "Raspberry Pi 3B Rack";
};
defaults = {
imports =
[
../Hardware/raspberry_pi_3_model_B.nix
../Deployments/pi3B_rack.nix
../Deployments/host_common.nix
];
};
pi-tri =
{ config, pkgs, lib, ... }:
{
#networking.hostName = "pi-tri"; # Define your hostname.
# This value determines the NixOS release with which your system is to be
# compatible, in order to avoid breaking some software such as database
# servers. You should change this only after NixOS release notes say you
# should.
system.stateVersion = "19.03"; # Did you read the comment?
system.autoUpgrade.enable = true;
system.autoUpgrade.channel = https://nixos.org/channels/nixos-19.03;
};
}