home: remove vscodium

This commit is contained in:
Max Headroom 2022-03-29 20:02:47 +02:00
parent 0cb797e638
commit 1ef3e7694f
2 changed files with 0 additions and 30 deletions

View file

@ -15,10 +15,6 @@ let
optionalDesktopModule = lib.optional (systemProfile == "desktop") {
imports = [
./home/codium.nix
];
# other files
home.file.templates-directory = import ./home/templates.nix meta;
home.file.steam-skins = {

View file

@ -1,26 +0,0 @@
{ inputs, pkgs, ... }:
{
programs.vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with inputs.nix-vsx.packages.x86_64-linux; [
arrterian_nix-env-selector
asvetliakov_vscode-neovim
GitLab_gitlab-workflow
jnoortheen_nix-ide
ms-python_python
ms-vscode_makefile-tools
rafaelmardojai_vscode-gnome-theme
];
userSettings = {
# general
"update.mode" = "none";
"files.autoSave" = "onFocusChange";
"workbench.colorTheme" = "GNOME dark";
"vscode-neovim.neovimExecutablePaths.linux" = "/run/current-system/sw/bin/nvim";
"git.confirmSync" = false;
};
};
}