added vscode as home program
parent
85e1c931ee
commit
b2b9fa66e4
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./rofi ./kitty.nix ./zathura.nix ./spotify.nix ];
|
||||
imports = [ ./rofi ./kitty.nix ./zathura.nix ./spotify.nix ./vscode.nix ];
|
||||
home-manager.users.moritz.home.packages = with pkgs; [
|
||||
neofetch
|
||||
keepassxc
|
||||
|
@ -12,7 +12,6 @@
|
|||
libreoffice
|
||||
signal-desktop
|
||||
anki
|
||||
vscodium-fhs
|
||||
];
|
||||
services.gvfs = {
|
||||
enable = true;
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home-manager.users.moritz = {
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium-fhs;
|
||||
extensions = with pkgs; [
|
||||
vscode-extensions.vscodevim.vim
|
||||
vscode-extensions.dracula-theme.theme-dracula
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue