mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 18:15:13 -05:00
19 lines
375 B
Nix
Executable file
19 lines
375 B
Nix
Executable file
{
|
|
pkgs,
|
|
lib,
|
|
flake,
|
|
...
|
|
}: {
|
|
programs = {
|
|
vscode = let
|
|
configPath = ./config;
|
|
in
|
|
{
|
|
enable = true;
|
|
package = pkgs.vscode;
|
|
}
|
|
// (import (configPath + /keybindings.nix))
|
|
// (import (configPath + /extensions.nix)) {inherit pkgs;}
|
|
// (import (configPath + /userSettings.nix)) {inherit pkgs lib flake;};
|
|
};
|
|
}
|