feat(aspen/system): Setup a systemd timer to sync the depot public inbox

Change-Id: Iaeae18af25b00b04bd805dabb320c218cb21fd8f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12545
Tested-by: BuildkiteCI
Autosubmit: aspen <root@gws.fyi>
Reviewed-by: aspen <root@gws.fyi>
This commit is contained in:
Aspen Smith 2024-09-29 10:46:42 -04:00 committed by clbot
parent e9d10753d5
commit 278ffa2b05
2 changed files with 29 additions and 4 deletions

View file

@ -1,14 +1,13 @@
{ pkgs, lib, config, ... }:
let
inherit (builtins) pathExists;
in
{
let inherit (builtins) pathExists;
in {
imports = [
../platforms/linux.nix
../modules/common.nix
../modules/email.nix
../modules/depot-inbox.nix
../modules/desktop.nix
] ++ (lib.optional (pathExists ../modules/private.nix)
../modules/private.nix);