mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-20 19:27:03 -04:00
26 lines
457 B
Nix
26 lines
457 B
Nix
{ pkgs, config, ... }:
|
|
let
|
|
in
|
|
{
|
|
imports = [
|
|
../../pinned.nix
|
|
../../unstable.nix
|
|
];
|
|
home = {
|
|
packages = with pkgs; [
|
|
unstable.vscode
|
|
# 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" ];
|
|
};
|
|
}
|