This commit is contained in:
Simon Gardling 2025-07-27 00:22:43 -07:00
parent f989ac6e1e
commit 3978c1e904
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D
2 changed files with 64 additions and 66 deletions

View File

@ -39,6 +39,7 @@
url = "github:nix-community/srvos"; url = "github:nix-community/srvos";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
deploy-rs = { deploy-rs = {
url = "github:serokell/deploy-rs"; url = "github:serokell/deploy-rs";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@ -151,8 +152,7 @@
lib lib
; ;
}; };
modules = modules = [
[
# SAFETY! make sure no ports collide # SAFETY! make sure no ports collide
( (
{ lib, ... }: { lib, ... }:

View File

@ -6,9 +6,7 @@
}: }:
let let
owntracks_pkg = pkgs.owntracks-recorder.overrideAttrs (old: { owntracks_pkg = pkgs.owntracks-recorder.overrideAttrs (old: {
installPhase = installPhase = old.installPhase + ''
old.installPhase
+ ''
mkdir -p $out/usr/share/ot-recorder mkdir -p $out/usr/share/ot-recorder
cp -R docroot/* $out/usr/share/ot-recorder''; cp -R docroot/* $out/usr/share/ot-recorder'';
}); });