fix(litterbox): rename the box to litterbox haha funy

This commit is contained in:
Kat Inskip 2024-02-22 15:38:53 -08:00
parent d935199249
commit d50cc27d8a
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
5 changed files with 21 additions and 8 deletions

View file

@ -0,0 +1,12 @@
{ config, ... }: {
services.syncthing = {
enable = true;
relay.enable = true;
settings = {
options = {
};
folders = {
};
};
};
}

View file

@ -9,6 +9,7 @@
nixos.base nixos.base
nixos.reisen-ct nixos.reisen-ct
nixos.tailscale nixos.tailscale
nixos.syncthing-kat
]; ];
#sops.defaultSopsFile = ./secrets.yaml; #sops.defaultSopsFile = ./secrets.yaml;

View file

@ -4,8 +4,8 @@ variable "proxmox_container_template" {
} }
locals { locals {
proxmox_katbox_vm_id = 106 proxmox_litterbox_vm_id = 106
proxmox_katbox_config = jsondecode(file("${path.root}/../systems/katbox/lxc.json")) proxmox_litterbox_config = jsondecode(file("${path.root}/../systems/litterbox/lxc.json"))
proxmox_aya_vm_id = 105 proxmox_aya_vm_id = 105
proxmox_aya_config = jsondecode(file("${path.root}/../systems/aya/lxc.json")) proxmox_aya_config = jsondecode(file("${path.root}/../systems/aya/lxc.json"))
proxmox_reimu_vm_id = 104 proxmox_reimu_vm_id = 104
@ -384,9 +384,9 @@ EOT
} }
} }
resource "proxmox_virtual_environment_container" "katbox" { resource "proxmox_virtual_environment_container" "litterbox" {
node_name = "reisen" node_name = "reisen"
vm_id = local.proxmox_katbox_vm_id vm_id = local.proxmox_litterbox_vm_id
tags = ["tf"] tags = ["tf"]
description = <<EOT description = <<EOT
kat's box kat's box
@ -403,7 +403,7 @@ EOT
} }
initialization { initialization {
hostname = "katbox" hostname = "litterbox"
ip_config { ip_config {
ipv6 { ipv6 {
address = "auto" address = "auto"
@ -445,9 +445,9 @@ EOT
} }
} }
module "katbox_config" { module "litterbox_config" {
source = "./system/proxmox/lxc/config" source = "./system/proxmox/lxc/config"
connection = local.proxmox_reisen_connection connection = local.proxmox_reisen_connection
container = proxmox_virtual_environment_container.katbox container = proxmox_virtual_environment_container.litterbox
config = local.proxmox_katbox_config.lxc config = local.proxmox_litterbox_config.lxc
} }