Update the templates

pull/3/head
Tristan Daniël Maat 2020-07-20 21:03:01 +01:00
parent a57565678a
commit dd1335cb36
Signed by: tlater
GPG Key ID: 49670FD774E43268
3 changed files with 18 additions and 1 deletions

BIN
etc/nixos/derivations/dist.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

@ -1 +0,0 @@
Subproject commit 1160d96b064531f65290e2d665c7c8d05fc3d29a

View File

@ -0,0 +1,15 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
# TODO: Once https://github.com/svanderburg/node2nix/issues/184 is
# fixed, use a proper nixos package instead of a tarball.
stdenv.mkDerivation {
pname = "tlaternet-templates";
version = "1.0";
src = ./dist.tar.gz;
installPhase = ''
mkdir -p $out/srv/
mv browser $out/srv/web
'';
}