feat: Added openscad

This commit is contained in:
uttarayan21
2025-04-19 19:02:42 +05:30
parent 6f758b9093
commit dfff55f056
2 changed files with 10 additions and 0 deletions

View File

@@ -23,5 +23,6 @@ lib.optionalAttrs device.hasGui {
./chromium.nix
./thunderbird.nix
./neovide.nix
./openscad.nix
];
}

9
home/apps/openscad.nix Normal file
View File

@@ -0,0 +1,9 @@
{
pkgs,
device,
...
}: {
home.packages = [
pkgs.openscad
];
}