feat(vscodium): add config

This commit is contained in:
Nydragon 2024-06-13 23:04:35 +09:00
parent 24a4b6d124
commit 6bc3dcbbfa
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
2 changed files with 12 additions and 0 deletions

View file

@ -14,6 +14,7 @@
./rofi ./rofi
./thunderbird ./thunderbird
./git ./git
./vscodium
]; ];
xdg.configFile."gtk-4.0/gtk.css".source = "${pkgs.catppuccin-gtk}/share/themes/Catppuccin-Frappe-Standard-Blue-Dark/gtk-4.0/gtk.css"; xdg.configFile."gtk-4.0/gtk.css".source = "${pkgs.catppuccin-gtk}/share/themes/Catppuccin-Frappe-Standard-Blue-Dark/gtk-4.0/gtk.css";

11
home/vscodium/default.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
programs.vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with pkgs.vscode-extensions; [
rust-lang.rust-analyzer
yzhang.markdown-all-in-one
];
};
}