mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-14 15:34:01 -05:00
12 lines
225 B
Nix
12 lines
225 B
Nix
|
{pkgs, config, ...}:
|
||
|
let
|
||
|
pinned = import ../pinned.nix { inherit pkgs config; };
|
||
|
in {
|
||
|
home = {
|
||
|
packages = with pkgs; [
|
||
|
pinned.vscode
|
||
|
# codium
|
||
|
zed-editor
|
||
|
];
|
||
|
};
|
||
|
}
|