feat: new host 'orion'

This commit is contained in:
Dmitriy Kholkin 2025-03-12 14:11:59 +03:00
parent 3f43173838
commit fef103bfae
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2
2 changed files with 12 additions and 0 deletions

View File

@ -89,6 +89,11 @@
hostModuleDir = ./hosts;
hosts = {
NixOS-VM.system = "x86_64-linux";
# home-hypervisor
orion = {
system = "x86_64-linux";
useHomeManager = false;
};
# VPS
redshift = {
system = "x86_64-linux";
@ -191,6 +196,9 @@
} conf;
in
builtins.mapAttrs mkDeploy {
orion = {
hostname = "10.10.10.10";
};
redshift = {
hostname = "104.164.54.197";
fastConnection = false;

4
hosts/orion/default.nix Normal file
View File

@ -0,0 +1,4 @@
{ ... }:
{
ataraxia.defaults.role = "server";
}