mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
profile/3d-design: init from legacy
This commit is contained in:
parent
8884bb792b
commit
09ffed6661
5 changed files with 19 additions and 9 deletions
17
profiles/3d-design/default.nix
Normal file
17
profiles/3d-design/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
cfg = config.my.profiles."3d-design";
|
||||
in
|
||||
{
|
||||
options.my.profiles."3d-design" = with lib; {
|
||||
enable = mkEnableOption "3d-design profile";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
meshlab
|
||||
cura
|
||||
openscad
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue