feat(vscode): add vscodium and extensions
This commit is contained in:
parent
ccc3ff74bd
commit
3dccf8f35a
23
home/vscode/home.nix
Normal file
23
home/vscode/home.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ pkgs
|
||||
, lib
|
||||
, config
|
||||
, ... }: with lib; let
|
||||
cfg = config.passthrough.vscode;
|
||||
in mkIf cfg.enable {
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
mutableExtensionsDir = false;
|
||||
enableUpdateCheck = false;
|
||||
enableExtensionUpdateCheck = false;
|
||||
package = pkgs.vscodium;
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
catppuccin.catppuccin-vsc catppuccin.catppuccin-vsc-icons
|
||||
bbenoist.nix golang.go rust-lang.rust-analyzer
|
||||
];
|
||||
userSettings = {
|
||||
"workbench.colorTheme" = "Catppuccin Frappé";
|
||||
"workbench.iconTheme" = "catppuccin-frappe";
|
||||
"[nix]"."editor.tabSize" = 2;
|
||||
};
|
||||
};
|
||||
}
|
19
home/vscode/nixos.nix
Normal file
19
home/vscode/nixos.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ pkgs
|
||||
, lib
|
||||
, config
|
||||
, ... }: with lib; let
|
||||
cfg = config.home.vscode;
|
||||
in {
|
||||
options.home.vscode = {
|
||||
enable = mkEnableOption "vscode text editor";
|
||||
};
|
||||
|
||||
config = {
|
||||
users.homeModules = [
|
||||
# this module passes vscode configuration to home-manager
|
||||
{ passthrough.vscode = cfg; }
|
||||
];
|
||||
|
||||
users.home.persist.directories = mkIf cfg.enable [ ".config/VSCodium" ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue