6078d6eade
Trying to prune my monthly GCP bill, which is ~$60. Will run my website as a stateless Google Cloud Run service and see if that'll help. I still need to figure out what to do with my Quassel instance... Change-Id: I934b55029f14132af74cabde5e0ddb9e2d3bb933 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7734 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com>
24 lines
404 B
Nix
24 lines
404 B
Nix
{ depot, pkgs, ... }:
|
|
|
|
let
|
|
inherit (depot.users.wpcarro.nixos)
|
|
ava
|
|
kyoko
|
|
marcus
|
|
tarasco;
|
|
|
|
systemFor = sys: (depot.ops.nixos.nixosFor sys).system;
|
|
in
|
|
{
|
|
avaSystem = systemFor ava;
|
|
kyokoSystem = systemFor kyoko;
|
|
marcusSystem = systemFor marcus;
|
|
tarascoSystem = systemFor ava;
|
|
|
|
meta.ci.targets = [
|
|
"avaSystem"
|
|
"kyokoSystem"
|
|
"marcusSystem"
|
|
"tarascoSystem"
|
|
];
|
|
}
|