mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-27 14:34:22 -04:00
some bugs with new version i dont have time to sort out yet update js corepack pin lazygit insane ux choice with no config setting completions are now built-in pin to old nerdfonts I dont want to do this, but the new version just throw error after error at me pin neovim
32 lines
595 B
Nix
32 lines
595 B
Nix
{ pkgs, config, ... }:
|
|
let
|
|
in
|
|
{
|
|
imports = [
|
|
../../pinned.nix
|
|
../../unstable.nix
|
|
];
|
|
home = {
|
|
packages = with pkgs; [
|
|
unstable.vscode
|
|
# pinned.vscode
|
|
# (pinned.vscode.fhsWithPackages (
|
|
# pkgs: with pkgs; [
|
|
# powershell
|
|
# ]
|
|
# ))
|
|
# codium
|
|
zed-editor
|
|
];
|
|
shellAliases = {
|
|
codetemp = "code -n $(mktemp -d)";
|
|
};
|
|
file = {
|
|
vscode_neovim = {
|
|
source = "${pkgs.pinned.vscode_neovim}/bin/nvim";
|
|
target = ".bin/vscode-neovim";
|
|
};
|
|
};
|
|
sessionPath = [ "$HOME/.bin" ];
|
|
};
|
|
}
|