Add cloud-init and digital ocean agent monitor

This should help with properly setting up IPv6 and with getting
statistics about what the machine is doing.
This commit is contained in:
Eli Ribble 2025-07-12 03:35:12 +00:00
parent ebb456c7cc
commit 93c0365a5f
3 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{ config, lib, pkgs, configFiles, ... }:
with lib;
{
services.cloud-init = {
enable = true;
network.enable = true;
};
}

View file

@ -1,5 +1,7 @@
{
imports = [
./cloud-init.nix
./do-agent.nix
./fish.nix
./tmux.nix
];

View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, configFiles, ... }:
with lib;
{
services.do-agent.enable = true;
}