mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
13 lines
249 B
Nix
13 lines
249 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
typst
|
|
typstyle
|
|
tinymist
|
|
];
|
|
|
|
programs.vscode.profiles.default.extensions = with pkgs.vscode-extensions; [
|
|
myriad-dreamin.tinymist
|
|
];
|
|
|
|
programs.zed-editor.extensions = ["typst"];
|
|
}
|