dotfiles/common/users/homeModules/dev/ide/default.nix

22 lines
308 B
Nix
Raw Normal View History

2025-01-31 16:41:00 -05:00
{ pkgs, config, ... }:
let
in
{
imports = [
../../pinned.nix
../../unstable.nix
];
home = {
packages = with pkgs; [
# pinned.vscode
2025-02-04 01:51:05 -05:00
(pinned.vscode.fhsWithPackages (
2025-01-31 16:41:00 -05:00
pkgs: with pkgs; [
powershell
]
))
# codium
zed-editor
];
2025-01-31 16:41:00 -05:00
};
2024-11-26 20:18:33 -05:00
}