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>
8 lines
298 B
Nix
8 lines
298 B
Nix
# Shell derivation to invoke //nix/lazy-deps with the dependencies that should
|
|
# be lazily made available in wpcarro's users dir in depot.
|
|
{ pkgs, depot, ... }:
|
|
|
|
depot.nix.lazy-deps {
|
|
import-gpg.attr = "users.wpcarro.configs.import-gpg";
|
|
export-gpg.attr = "users.wpcarro.configs.export-gpg";
|
|
}
|