summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEthel Morgan <eth@ethulhu.co.uk>2020-06-02 15:14:01 +0100
committerEthel Morgan <eth@ethulhu.co.uk>2020-06-02 15:14:01 +0100
commit5774493677ba2c6a3a007c562d48d5f1ed3682fe (patch)
tree2dbddcdd0f88ac70cbf563f6ce791a1e9c787701
parent9c329e837211c0d26ead9765d0815ba08db9bd8f (diff)
bump Helix version; add ffprobe to helix-directory's path
-rw-r--r--nixos/modules/services/helix-directory.nix1
-rw-r--r--pkgs/default.nix2
2 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/services/helix-directory.nix b/nixos/modules/services/helix-directory.nix
index 4601dea..9826bca 100644
--- a/nixos/modules/services/helix-directory.nix
+++ b/nixos/modules/services/helix-directory.nix
@@ -40,6 +40,7 @@ in {
wants = [ "network.target" ];
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
+ path = [ pkgs.ffmpeg ];
serviceConfig = {
DynamicUser = true;
diff --git a/pkgs/default.nix b/pkgs/default.nix
index 48d3117..cd005b9 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -8,7 +8,7 @@ pkgs: super: {
catbus-snapcast = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/catbus-snapcast"; } ) {};
catbus-web-ui = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/catbus-web-ui"; } ) {};
- helix = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/helix"; rev = "dd13cd32ec89503bc1244d4f307452faba1ca7ba"; } ) {};
+ helix = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/helix"; rev = "eb0335d0d1810187ea054c5960e11bd2e90f771b"; } ) {};
dlnatoad = pkgs.callPackage ./dlnatoad {};