Files
nix/modules/home/develop.nix

12 lines
104 B
Nix
Raw Normal View History

2025-04-21 11:17:23 +08:00
{ pkgs, ... }:
{
home = {
packages = with pkgs; [
go
nodejs
yarn
];
2025-04-21 11:52:39 +08:00
};
}