test
This commit is contained in:
parent
57736d3b98
commit
992fd5f726
18 changed files with 0 additions and 0 deletions
24
temp-Modules/Applications/GUI-Apps/Desktop-Apps/vscodium.nix
Normal file
24
temp-Modules/Applications/GUI-Apps/Desktop-Apps/vscodium.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.vscodium-and-extension;
|
||||
in {
|
||||
options.vscodium-and-extension.enable = mkEnableOption "Enable VScodium with extensions";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
profiles.default.extensions = with pkgs.vscode-extensions; [
|
||||
catppuccin.catppuccin-vsc
|
||||
jnoortheen.nix-ide
|
||||
ms-python.python
|
||||
ms-azuretools.vscode-docker
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue