aboutsummaryrefslogtreecommitdiff
path: root/hosts/hive
diff options
context:
space:
mode:
authortdback <tyler@tdback.net>2024-12-26 20:21:47 -0500
committertdback <tyler@tdback.net>2024-12-26 20:21:47 -0500
commit397aee1840f8a55e53595ca0f55e1df4ad245bf5 (patch)
treea859de6aca2983b6dbedd84a7bd745ca08224504 /hosts/hive
parent274a1e84f12c39e2f0a67b1fc85511381c8b798d (diff)
modularize motd script
Diffstat (limited to 'hosts/hive')
-rw-r--r--hosts/hive/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/hosts/hive/default.nix b/hosts/hive/default.nix
index c164b92..61b8193 100644
--- a/hosts/hive/default.nix
+++ b/hosts/hive/default.nix
@@ -34,11 +34,9 @@
efi.canTouchEfiVariables = true;
};
- motd = {
+ programs.motd = {
+ enable = true;
networkInterfaces = lib.lists.singleton "eno1";
- servicesToCheck = [
- "caddy"
- "gotosocial"
- ];
+ servicesToCheck = [ "caddy" "gotosocial" ];
};
}