feat: clean up configuration
This commit is contained in:
26
modules/home-manager/programs/creativity.nix
Normal file
26
modules/home-manager/programs/creativity.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
options.myHome.programs.creativity.enable = lib.mkEnableOption "enable creativity software";
|
||||
config = lib.mkIf config.myHome.programs.creativity.enable {
|
||||
home.packages = with pkgs; [
|
||||
blender
|
||||
tiled
|
||||
aseprite
|
||||
inkscape
|
||||
|
||||
prusa-slicer
|
||||
openscad
|
||||
|
||||
godot_4
|
||||
gdtoolkit_4
|
||||
|
||||
audacity
|
||||
sfxr
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user