valconomy/controller/default.nix

26 lines
470 B
Nix
Raw Normal View History

{
perSystem = { libMy, pkgs, ... }: {
devenv.shells.controller = libMy.withRootdir {
languages = {
python = {
enable = true;
version = "3.13";
libraries = with pkgs; [
2024-12-11 18:59:17 +00:00
zlib # required by hidapi (?)
];
uv = {
enable = true;
sync.enable = true;
};
};
};
packages = with pkgs; [ ];
env = { };
2024-12-11 21:18:18 +00:00
scripts = { };
};
};
}