nix-config/modules/home/vscodium.nix
2026-07-18 17:17:50 +02:00

17 lines
242 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
tinymist
];
programs.vscodium = {
enable = true;
profiles.default = {
extensions = with pkgs.vscode-extensions; [
myriad-dreamin.tinymist
];
};
};
}