Corrected host definition
This commit is contained in:
parent
cc5f0a097d
commit
af93fcafa4
|
@ -1,22 +1,20 @@
|
|||
# NixOps configuration for pi-tri
|
||||
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
pi-tri =
|
||||
{ config, pkgs, lib, ... }:
|
||||
imports = [
|
||||
../Deployments/gitea_home.nix
|
||||
../Secrets/gitea_home.nix
|
||||
];
|
||||
|
||||
{
|
||||
imports = [
|
||||
../Deployments/gitea_home.nix
|
||||
../Secrets/gitea_home.nix
|
||||
];
|
||||
deployment.targetHost = "10.69.0.203";
|
||||
deployment.targetHost = "10.69.0.203";
|
||||
|
||||
networking.hostName = "pi-tri"; # Define your hostname.
|
||||
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
|
||||
];
|
||||
};
|
||||
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
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue