update nix config

This commit is contained in:
fred 2025-08-12 11:53:58 -07:00
parent f610209aff
commit 07b7f0cc1f
34 changed files with 388 additions and 240 deletions

12
modules/dev/utils.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }: {
config = {
home-manager.users.${config.user} = { pkgs, ... }: {
home.packages = with pkgs; [
typescript
httpie
];
};
};
}