26 lines
807 B
Nix
26 lines
807 B
Nix
{ 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
|
|
[ ]);
|
|
};
|
|
}
|