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