caesium: thunderbird and vscode updates

This commit is contained in:
2026-08-06 23:38:26 -04:00
parent bf09e6cabb
commit 7fb8488730
13 changed files with 445 additions and 292 deletions
+34
View File
@@ -0,0 +1,34 @@
{ config, pkgs, ... }: {
xdg.configFile."oxlint/oxlintrc.json".source =
config.lib.file.mkOutOfStoreSymlink "/Users/matthew.bessette/nixos/config.oxlintrc.json";
xdg.configFile."biome/biome.json".source =
config.lib.file.mkOutOfStoreSymlink "/Users/matthew.bessette/nixos/config.biome.json";
programs.vscode = {
enable = true;
package = pkgs.unstable.vscode;
mutableExtensionsDir = false;
profiles.default = {
userSettings = builtins.fromJSON (builtins.readFile ./config.vscode.settings.json);
extensions =
(with pkgs.vscode-marketplace-release; [
bbenoist.nix
jnoortheen.nix-ide
graphql.vscode-graphql-syntax
graphql.vscode-graphql
ms-python.debugpy
ms-python.python
ms-python.vscode-pylance
oxc.oxc-vscode
vscode-icons-team.vscode-icons
typescriptteam.native-preview
lucasprag.dont-git-lost
ms-vscode-remote.remote-ssh
])
++ (with pkgs.vscode-marketplace; [
biomejs.biome
]);
};
};
}