[m] Develop modules

This commit is contained in:
soraefir 2023-12-16 15:18:35 +01:00
parent da69a21100
commit 7fd3cf04b7
Signed by: sora
GPG Key ID: A362EA0491E2EEA0
5 changed files with 20 additions and 2 deletions

View File

@ -1,3 +1,3 @@
{ ... }: {
imports = [ ./firefox ./images ./mpv ./pipewire ./vosk ./vscodium ./zathura ];
imports = [ ./develop ./firefox ./images ./mpv ./pipewire ./vosk ./zathura ];
}

View File

@ -0,0 +1,12 @@
{ lib, config, pkgs, ... }: {
imports = [ ./vscodium ];
config = lib.mkIf (config.homecfg.make.develop) {
home.packages = with pkgs; [
blender
godot_4
];
};
}

View File

@ -1,6 +1,6 @@
{ lib, config, pkgs, ... }: {
config = lib.mkIf (config.homecfg.make.gui) {
config = lib.mkIf (config.homecfg.make.develop) {
programs.vscode = {
enable = true;
package = pkgs.vscodium;

View File

@ -15,6 +15,10 @@ with lib; {
type = types.bool;
default = false;
};
develop = mkOption {
type = types.bool;
default = false;
};
game = mkOption {
type = types.bool;
default = false;

View File

@ -6,6 +6,8 @@
gui = true;
cli = true;
game = true;
develop = true;
power = true;
};
git = {
email = "soraefir+git@pm.me";