summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-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 {};