added sublime and joplin options

This commit is contained in:
John Lancaster
2025-07-06 23:47:05 -05:00
parent ac9e58ede6
commit cc21dcdc92
2 changed files with 5 additions and 1 deletions

View File

@@ -63,7 +63,9 @@
# # fonts? # # fonts?
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; }) # (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
] ]
++ lib.optionals config.graphical.discord [ discord ]; ++ lib.optional config.graphical.discord discord
++ lib.optional config.graphical.joplin joplin-desktop
++ lib.optional config.graphical.sublime sublime4;
# Home Manager can also manage your environment variables through # Home Manager can also manage your environment variables through
# 'home.sessionVariables'. These will be explicitly sourced when using a # 'home.sessionVariables'. These will be explicitly sourced when using a

View File

@@ -70,7 +70,9 @@
{ {
discord = boolOption; discord = boolOption;
ghostty = boolOption; ghostty = boolOption;
joplin = boolOption;
steam = boolOption; steam = boolOption;
sublime = boolOption;
vscode = boolOption; vscode = boolOption;
}; };
} }