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

22 lines
310 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
(unstable.vscode.fhsWithPackages (
pkgs: with pkgs; [
powershell
]
))
# codium
zed-editor
];
2025-01-31 16:41:00 -05:00
};
2024-11-26 20:18:33 -05:00
}