added rockpro host and deployment profile.

This commit is contained in:
Gabe Venberg 2024-06-18 18:06:17 -05:00
parent 44b89b8f0c
commit 4224c17044
7 changed files with 148 additions and 3 deletions

View file

@ -91,6 +91,7 @@
archlaptop-vm = import ./hosts/archlaptop-vm {inherit inputs configLib;};
workstation-vm = import ./hosts/workstation-vm {inherit inputs configLib;};
gv-wsl = import ./hosts/wsl-workstation.nix {inherit inputs configLib;};
rockpro = import ./hosts/rockpro64 {inherit inputs configLib;};
};
# Standalone home-manager configuration entrypoint
@ -102,6 +103,17 @@
"gabe@gv-ubuntu" = import ./hosts/home-workstation.nix {inherit inputs configLib;};
};
deploy = {
nodes = {
rockpro = {
hostname = "rockpro";
profiles.system.path = deploy-rs.lib.aarch64-linux.activate.nixos self.nixosConfigurations.rockpro;
remoteBuild = true;
};
};
sshUser = "root";
};
packages.x86_64-linux = {
proxmox = import ./packages/proxmox.nix {inherit inputs configLib;};
iso = import ./packages/iso.nix {inherit inputs configLib;};