restructured modules, toggling them, overlays
This commit is contained in:
25
modules/apps/art.nix
Normal file
25
modules/apps/art.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ config, pkgs, lib, unstable, ... }:
|
||||
|
||||
{
|
||||
options = {
|
||||
myArt.enable = lib.mkEnableOption "enable";
|
||||
myGameDev.enable = lib.mkEnableOption "enable";
|
||||
};
|
||||
config = lib.mkIf config.myArt.enable {
|
||||
users.users.jawz.packages = with pkgs;
|
||||
([
|
||||
gimp # the coolest bestest art program to never exist
|
||||
krita # art to your heart desire!
|
||||
mypaint # not the best art program
|
||||
mypaint-brushes # but it's got some
|
||||
mypaint-brushes1 # nice damn brushes
|
||||
# drawpile # arty party with friends!!
|
||||
pureref # create inspiration/reference boards
|
||||
blender # cgi animation and sculpting
|
||||
]) ++ (if config.myGameDev.enable then [
|
||||
godot_4 # game development
|
||||
unstable.gdtoolkit # gdscript language server
|
||||
] else
|
||||
[ ]);
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user