30 lines
977 B
Nix
30 lines
977 B
Nix
{ config, pkgs, lib, unstable, ... }:
|
|
let
|
|
unstable = import
|
|
(builtins.fetchTarball "https://github.com/nixos/nixpkgs/tarball/master") {
|
|
config = config.nixpkgs.config;
|
|
};
|
|
in {
|
|
options.my = {
|
|
apps.art.enable = lib.mkEnableOption "enable";
|
|
dev.gameDev.enable = lib.mkEnableOption "enable";
|
|
};
|
|
config = lib.mkIf config.my.apps.art.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.my.dev.gameDev.enable then [
|
|
godot_4 # game development
|
|
unstable.gdtoolkit # gdscript language server
|
|
] else
|
|
[ ]);
|
|
};
|
|
}
|