monitoring
This commit is contained in:
parent
a03149337d
commit
eaaad44419
3 changed files with 23 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ ... }: {
|
{ pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
../common
|
../common
|
||||||
../common/home-user.nix
|
../common/home-user.nix
|
||||||
|
@ -9,4 +9,8 @@
|
||||||
|
|
||||||
# im blind LOL
|
# im blind LOL
|
||||||
#programs.kitty.settings.font_size = 16;
|
#programs.kitty.settings.font_size = 16;
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
cider
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
1
nixos/hosts/monitoring/.target
Normal file
1
nixos/hosts/monitoring/.target
Normal file
|
@ -0,0 +1 @@
|
||||||
|
root@192.168.1.241
|
17
nixos/hosts/monitoring/default.nix
Normal file
17
nixos/hosts/monitoring/default.nix
Normal file
|
@ -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
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue