23 lines
577 B
Nix
23 lines
577 B
Nix
# NixOps configuration for pi-tri
|
|
|
|
{
|
|
pi-tri =
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../Deployments/gitea_home.nix
|
|
../Secrets/gitea_home.nix
|
|
];
|
|
deployment.targetHost = "10.69.0.203";
|
|
|
|
networking.hostName = "pi-tri"; # Define your hostname.
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gnupg # GPL OpenPGP implementation
|
|
nix-zsh-completions # ZSH completions for Nix, NixOS, and NixOps
|
|
nixops # NixOS cloud provisioning and deployment tool
|
|
];
|
|
};
|
|
}
|