hotfix de reestructuración
This commit is contained in:
parent
b29950097c
commit
0bdad7bc4e
8 changed files with 18 additions and 14 deletions
|
@ -9,10 +9,12 @@ in
|
|||
imports = [ ./vscode ];
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
local.apps.editors.vscode = mkDefault true;
|
||||
local.apps.editors.vscode.enable = mkDefault true;
|
||||
|
||||
neovim.enable = true;
|
||||
helix.enable = true;
|
||||
programs = {
|
||||
neovim.enable = true;
|
||||
helix.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -7,13 +7,13 @@ in
|
|||
options.local.apps.editors.vscode.enable = mkEnableOption "VSCodium";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = [ rust-analyzer ];
|
||||
home.packages = [ pkgs.rust-analyzer ];
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
mutableExtensionsDir = false;
|
||||
extensions = attrValues (pkgs.callPackage ./extensions.nix {}).extensions;
|
||||
userSettings = import ./settings.nix
|
||||
userSettings = import ./settings.nix;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Reference in a new issue