This commit is contained in:
2023-11-07 16:13:40 +02:00
parent 6c66015eb1
commit bee5967a9e

View File

@@ -1,4 +1,4 @@
{ config, lib, pkgs, python3Full, ... }: { config, lib, pkgs, ... }:
let let
cfg = config.local.packages.linuxcnc; cfg = config.local.packages.linuxcnc;
inherit (builtins) filter map pathExists listToAttrs; inherit (builtins) filter map pathExists listToAttrs;
@@ -13,7 +13,7 @@ let
''; '';
}); });
pythonPkg = (python3Full.withPackages (ps: [ pythonPkg = (pkgs.python3Full.withPackages (ps: [
ps.pyserial # for camera feedback into linuxcnc ps.pyserial # for camera feedback into linuxcnc
])); ]));