feat: Move gui-programs to apps

This commit is contained in:
uttarayan21
2025-03-26 01:17:14 +05:30
parent cf2833d567
commit ceaf555686
10 changed files with 18 additions and 27 deletions

17
home/apps/vscode.nix Normal file
View File

@@ -0,0 +1,17 @@
{pkgs, ...}: {
programs = {
# Only for checking markdown previews
vscode = {
enable = true;
package = pkgs.vscodium;
profiles = {
default = {
extensions = with pkgs.vscode-extensions; [
shd101wyy.markdown-preview-enhanced
asvetliakov.vscode-neovim
];
};
};
};
};
}