feat(vscodium): add config
This commit is contained in:
parent
24a4b6d124
commit
6bc3dcbbfa
2 changed files with 12 additions and 0 deletions
|
@ -14,6 +14,7 @@
|
|||
./rofi
|
||||
./thunderbird
|
||||
./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";
|
||||
|
|
11
home/vscodium/default.nix
Normal file
11
home/vscodium/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue