mirror of
https://github.com/zoriya/abyss.git
synced 2025-12-06 06:36:16 +00:00
14 lines
257 B
Nix
14 lines
257 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
kicad
|
|
freecad
|
|
ergogen
|
|
# keymap-drawer
|
|
];
|
|
|
|
# no clue why we need those env vars for freecad
|
|
# QT_QPA_PLATFORM = "wayland;xcb";
|
|
# QT_QPA_PLATFORMTHEME = "qt5ct";
|
|
}
|