diff --git a/Hosts/pi-tri.nix b/Hosts/pi-tri.nix index d9ae4d7..6787681 100644 --- a/Hosts/pi-tri.nix +++ b/Hosts/pi-tri.nix @@ -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 + ]; }