Add openscad

This commit is contained in:
2026-04-15 11:15:50 +02:00
parent 6425616f8c
commit deed82f96b
2 changed files with 9 additions and 0 deletions

View File

@@ -23,6 +23,7 @@
../modules/qbittorrent.nix
../modules/gimp.nix
../modules/bambu-studio.nix
../modules/openscad.nix
];
boot.loader.systemd-boot.enable = true;

View File

@@ -0,0 +1,8 @@
{ config, pkgs, ... } :
{
environment.systemPackages = with pkgs; [
openscad
];
}