This commit is contained in:
Geoffrey Frogeye 2025-02-24 21:21:16 +01:00
parent 75de3cc274
commit dfa4e65377
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
7 changed files with 27 additions and 3 deletions

22
hm/dev/3d.nix Normal file
View file

@ -0,0 +1,22 @@
{
pkgs,
lib,
config,
...
}:
{
config = lib.mkIf config.frogeye.dev."3d" {
home = {
packages = with pkgs; [
blender
openscad
orca-slicer
];
};
programs.nixvim.plugins = {
# TODO Neither seem to do anything...
# openscad.enable = true;
lsp.servers.openscad_lsp.enable = true;
};
};
}

View file

@ -1,6 +1,7 @@
{ pkgs, config, ... }:
{
imports = [
./3d.nix
./c.nix
./common.nix
./go.nix