Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ with lib;

let
cfg = config.services.prometheus.exporters.exportarr-sabnzbd;

in
{
options.services.prometheus.exporters.exportarr-sabnzbd = {
Expand Down
4 changes: 4 additions & 0 deletions modules/packages/fileflows/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ let

cd "$FILEFLOWS_SERVER_BASE_DIR"

rm -rf Server Node FlowRunner

cp -r @OUT@/fileflows/Server .
cp -r @OUT@/fileflows/Node .
cp -r @OUT@/fileflows/FlowRunner .
Expand All @@ -42,6 +44,8 @@ let

cd "$FILEFLOWS_NODE_BASE_DIR"

rm -rf Node FlowRunner

cp -r @OUT@/fileflows/Node .
cp -r @OUT@/fileflows/FlowRunner .
chmod -R u+w Node FlowRunner
Expand Down
6 changes: 3 additions & 3 deletions modules/packages/tracearr/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@
}:
stdenv.mkDerivation (finalAttrs: {
pname = "tracearr";
version = "2.1.0";
version = "2.2.3";

src = fetchFromGitHub {
owner = "connorgallopo";
repo = "Tracearr";
tag = "v${finalAttrs.version}";
hash = "sha256-075XXIFuOYcshElOD11TAjc2679Y7d8GU1XVuqBMquc=";
hash = "sha256-IJYfpQqb3HwvacjK0+TBLd+so5BOPertjuy+EwxV+iI=";
};

pnpmDeps = fetchPnpmDeps {
inherit (finalAttrs) pname version src;
inherit pnpm;
fetcherVersion = 4;
hash = "sha256-siXWtc8O8lWT+KGxGaPNDeTqXONFZhOHhNdXMwOGS1s=";
hash = "sha256-Xt2pDiNSkq/WUG+HBj/u9Y40jRRArJhkL5VpEoan3D4=";
};

# The pnpm version is required, but nixpkgs doesn't provide the exact version that Tracearr requires
Expand Down
8 changes: 4 additions & 4 deletions modules/packages/unifi-os-server-image/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{ lib, pkgs }:
let
imageVersion = "d7bbd4816078";
installerVersion = "5.1.37";
url = "https://fw-download.ubnt.com/data/unifi-os-server/9aee-linux-x64-5.1.37-a88d909c-2ac0-43f8-bb22-2bff3b673cbb.37-x64";
sha256 = "sha256-SlsffynyVzPPxfdJemPj29T0phazUsu9gXqJ6x+ma2E=";
imageVersion = "c9603dec9010";
installerVersion = "5.1.42";
url = "https://fw-download.ubnt.com/data/unifi-os-server/5172-linux-x64-5.1.42-12e9e3cf-8f8b-4e54-928c-76b80a10c8a4.42-x64";
sha256 = "sha256-9hEek5akLHQBb13emwH770hqb+ae/hN5Nebji3wi+U0=";
in
pkgs.stdenvNoCC.mkDerivation {
pname = "unifi-os-server";
Expand Down
3 changes: 3 additions & 0 deletions modules/profiles/home-automation/frigate/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ let
user = cameraUsername;
password = cameraPassword;
};
motion = {
mask = [ "0.899,0.732,0.885,0.811,0.852,0.801,0.856,0.715" ];
};
record = {
enabled = true;
alerts = {
Expand Down
6 changes: 4 additions & 2 deletions modules/profiles/media-management/sabnzbd/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ flake, config, ... }:
let
downloadDir = "/data/local/tmp/sabnzbd/inter";
completeDir = "/data/local/tmp/sabnzbd/dst";
downloadDir = "/mnt/blockbuster/tmp/sabnzbd/inter";
completeDir = "/mnt/blockbuster/tmp/sabnzbd/dst";
in
{
sops = {
Expand Down Expand Up @@ -269,6 +269,8 @@ in
"d '${completeDir}' 0777 ${config.services.sabnzbd.user} ${config.services.sabnzbd.group} - -"
];

systemd.services.sabnzbd.unitConfig.RequiresMountsFor = [ "/mnt/blockbuster" ];

services.prometheus.exporters.exportarr-sabnzbd = {
enable = true;
url = "https://sabnzbd.e10.camp";
Expand Down
Loading