nixos-systems/modules/system/do-agent.nix
Eli Ribble fe4d33cf03 Make do-agent, cloud-init, and fish opt-in via config
I just like having lists that show what's going on, and light redundancy
doesn't bother me.
2025-07-17 17:09:11 +00:00

11 lines
232 B
Nix

{ config, lib, pkgs, configFiles, ... }:
with lib;
{
options.myModules.do-agent.enable = mkEnableOption "custom do-agent configuration";
config = mkIf config.myModules.do-agent.enable {
services.do-agent.enable = true;
};
}