From eaaad4441950fe3fe7c60433a1b74190f97599d5 Mon Sep 17 00:00:00 2001 From: noe Date: Sat, 10 Feb 2024 17:05:08 -0500 Subject: [PATCH] monitoring --- home-manager/noe/hosts/cider.nix | 6 +++++- nixos/hosts/monitoring/.target | 1 + nixos/hosts/monitoring/default.nix | 17 +++++++++++++++++ 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 nixos/hosts/monitoring/.target create mode 100644 nixos/hosts/monitoring/default.nix diff --git a/home-manager/noe/hosts/cider.nix b/home-manager/noe/hosts/cider.nix index 4245aef..8f51ee7 100644 --- a/home-manager/noe/hosts/cider.nix +++ b/home-manager/noe/hosts/cider.nix @@ -1,4 +1,4 @@ -{ ... }: { +{ pkgs, ... }: { imports = [ ../common ../common/home-user.nix @@ -9,4 +9,8 @@ # im blind LOL #programs.kitty.settings.font_size = 16; + + home.packages = with pkgs; [ + cider + ]; } diff --git a/nixos/hosts/monitoring/.target b/nixos/hosts/monitoring/.target new file mode 100644 index 0000000..52fe3c8 --- /dev/null +++ b/nixos/hosts/monitoring/.target @@ -0,0 +1 @@ +root@192.168.1.241 diff --git a/nixos/hosts/monitoring/default.nix b/nixos/hosts/monitoring/default.nix new file mode 100644 index 0000000..59a18f6 --- /dev/null +++ b/nixos/hosts/monitoring/default.nix @@ -0,0 +1,17 @@ +{ pkgs, ... }: { + imports = [ + ../../templates/proxmox-lxc.nix + ../../server.nix + ../../features/dns-cache.nix + ]; + + networking.hostName = "monitoring"; + system.stateVersion = "24.05"; + nixpkgs.hostPlatform = "x86_64-linux"; + + networking.firewall.allowedTCPPorts = [ + 80 + ]; + + +}