Rename the namespace of the home-modules

This commit is contained in:
SebastianStork 2025-05-27 22:47:12 +02:00
parent 06623cd93a
commit f0df314f21
25 changed files with 74 additions and 68 deletions

View file

@ -7,9 +7,9 @@
...
}:
{
options.myConfig.vscode.enable = lib.mkEnableOption "";
options.custom.programs.vscode.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.vscode.enable {
config = lib.mkIf config.custom.programs.vscode.enable {
programs.vscode = {
enable = true;
package = pkgs-unstable.vscodium;
@ -37,7 +37,7 @@
dark = "GitHub Dark";
light = "GitHub Light";
}
.${config.myConfig.theme};
.${config.custom.theme};
"workbench.iconTheme" = "material-icon-theme";
"editor.fontFamily" = "JetBrainsMono Nerd Font";
"explorer.confirmDelete" = false;