diff options
author | Vincent Ambo <mail@tazj.in> | 2021-08-06T11·53+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-08-12T14·55+0000 |
commit | 47409b9610e13dbed3c259ec23dac6c822734ce2 (patch) | |
tree | 186bccc5a65c2433c7949b26c65336889ed8549e /.nixery/default.nix | |
parent | fc94800227d7331231830b867bd1d3d5df533f4d (diff) |
feat(ops/modules): Add module for running Nixery r/2721
This sets up a very simple Nixery instance with some things lacking: * no support for garbage-collecting image fragments (yet) * no popularity setup The plan is to use this to get the ball rolling on a separate domain (e.g. images.tvl.fyi), iron things out and then look into flipping over nixery.dev Change-Id: Ic594809f9d487fec7a0f632d608752a3f9c61315 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3280 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de> Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to '.nixery/default.nix')
-rw-r--r-- | .nixery/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.nixery/default.nix b/.nixery/default.nix index 71f1dfb5c413..19da286ee345 100644 --- a/.nixery/default.nix +++ b/.nixery/default.nix @@ -1,5 +1,5 @@ # See README.md -{ depot ? import ../. {} }: +{ depot ? import ../. {}, ... }: depot.third_party.nixpkgs.extend(_: _: { tvl = depot; |