adds editors category

This commit is contained in:
Moritz Böhme 2021-11-08 13:52:09 +01:00
parent 90c9f87eda
commit 449e93c093
7 changed files with 17 additions and 3 deletions

View file

@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }:
{
imports = [ ./rofi ./kitty.nix ./zathura.nix ./spotify.nix ./vscode.nix ];
imports = [ ./rofi ./kitty.nix ./zathura.nix ./spotify.nix ];
home-manager.users.moritz.home.packages = with pkgs; [
neofetch
keepassxc

View file

@ -1,22 +0,0 @@
{ config, lib, pkgs, ... }:
{
home-manager.users.moritz = {
programs.vscode = {
enable = true;
package = pkgs.vscode-fhsWithPackages (ps: with ps; [ git ]);
extensions = with pkgs.vscode-extensions;
[
vscodevim.vim
dracula-theme.theme-dracula
esbenp.prettier-vscode
pkief.material-icon-theme
] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [{
name = "copilot";
publisher = "GitHub";
version = "1.7.3689";
sha256 = "16zrrymxfymc0039zf48vm22rxjs22mh9zkvkpg45grx2a2m19zh";
}];
};
};
}