mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-22 12:17:00 -04:00
32 lines
588 B
Nix
32 lines
588 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.neovim}/bin/nvim";
|
|
target = ".bin/vscode-neovim";
|
|
};
|
|
};
|
|
sessionPath = [ "$HOME/.bin" ];
|
|
};
|
|
}
|