dotfiles/home/modules/vscode/default.nix

19 lines
360 B
Nix
Raw Normal View History

2024-11-20 16:07:09 -06:00
{
pkgs,
lib,
...
}: {
programs = {
2024-11-20 17:47:07 -06:00
vscode = let
configPath = ./config;
in
2024-11-20 16:07:09 -06:00
{
enable = true;
package = pkgs.vscode;
}
2024-11-20 17:47:07 -06:00
// (import (configPath + /keybindings.nix))
// (import (configPath + /extensions.nix)) {inherit pkgs;}
// (import (configPath + /userSettings.nix)) {inherit pkgs lib;};
2024-11-20 16:07:09 -06:00
};
}