about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2021-04-23 18:01:23 +0200
committerProfpatsch <mail@profpatsch.de>2021-04-23 18:01:23 +0200
commitcf0427149275359cb3c3ddcdeb5f3ccd2ec76eb1 (patch)
tree0d1c6d8cb560b9d29f2708ea4d8376924493aff0 /machines
parenta3bc43ce06d132453f1f3de3e395b8cda19a3fc9 (diff)
fix: unfreeAndNonDistributablePkgs is a package set not a fn
Diffstat (limited to 'machines')
-rw-r--r--machines/profpatsch/pkgs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/machines/profpatsch/pkgs.nix b/machines/profpatsch/pkgs.nix
index ae13e7ef..918e5a88 100644
--- a/machines/profpatsch/pkgs.nix
+++ b/machines/profpatsch/pkgs.nix
@@ -8,7 +8,7 @@ let
 
   mpv = pkgs.wrapMpv pkgs.mpv-unwrapped {
     scripts = [
-      (unfreeAndNonDistributablePkgs pkgs.mpvScripts.convert)
+      (unfreeAndNonDistributablePkgs.mpvScripts.convert)
     ];
   };