Compare commits

...

4 Commits

5 changed files with 9 additions and 4 deletions
+4 -1
View File
@@ -20,7 +20,6 @@
lib,
config,
pkgs,
self',
system,
...
}: let
@@ -107,6 +106,10 @@
packages = [
pyEnv
];
shellHook = ''
export PYTHONPATH="${pyEnv}/${pyEnv.sitePackages}:$PYTHONPATH"
'';
}
// cfg.devShell.extraAttrs);
+1
View File
@@ -0,0 +1 @@
use flake
-1
View File
@@ -155,7 +155,6 @@ activemq-data/
# Environments
.env
.envrc
.venv
env/
venv/
+3 -1
View File
@@ -1,8 +1,10 @@
from build123d import * # pyright: ignore[reportWildcardImportFromLibrary]
# pyright: reportUnusedCallResult=false, reportWildcardImportFromLibrary=false
from build123d import *
length, width, thickness = 80.0, 60.0, 10.0
with BuildPart() as builder:
Box(length, width, thickness)
assert builder.part is not None
export_step(builder.part, "output.step")
+1 -1
View File
@@ -7,7 +7,7 @@
flake-parts.url = "github:hercules-ci/flake-parts";
project-templates = {
url = "path:///home/reed/code/project-templates";
url = "git+ssh://gitea@git.krantz.one/reed/project-templates";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};