diff options
author | tdback <tyler@tdback.net> | 2025-01-18 11:26:02 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-18 11:26:02 -0500 |
commit | f09ee74cf65390999f87cf3b62c527411e864281 (patch) | |
tree | cbd455c71ff5bb5f3d4cdc1336e6c34060a3e62a /hosts | |
parent | d24a1993ee0cb597452d56594cf5cddc20c9b610 (diff) |
feat: add services to check. use same timezone for syncing auto-updates
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/loki/default.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/hosts/loki/default.nix b/hosts/loki/default.nix index 5028d3c..ca6edab 100644 --- a/hosts/loki/default.nix +++ b/hosts/loki/default.nix @@ -19,7 +19,7 @@ networkmanager.enable = true; }; - time.timeZone = "Europe/Helsinki"; + time.timeZone = "America/Detroit"; boot.loader.grub = { enable = true; @@ -30,6 +30,10 @@ programs.motd = { enable = true; networkInterfaces = [ "enp1s0" ]; - servicesToCheck = [ ]; + servicesToCheck = [ + "coturn" + "matrix" + "postgresql" + ]; }; } |