refactor custom packages to be a module

This commit is contained in:
sadan 2024-12-16 19:21:14 -05:00
parent c73e0afd18
commit aa209a91b9
No known key found for this signature in database
5 changed files with 71 additions and 54 deletions

View file

@ -1,23 +1,29 @@
{pkgs, unstable, ...}: {
imports = [
../prisma.nix
];
home = {
packages = with pkgs; [
lemminx
deno
eslint_d
vscode-langservers-extracted
nodePackages_latest.typescript-language-server
typescript
unstable.eslint
corepack_22
nodejs_22
] ++ (with pkgs.nodePackages; [
nodemon
ts-node
pnpm
live-server
]);
{ pkgs, unstable, ... }: {
imports = [
../prisma.nix
../../../../customPackages
];
home = {
shellAliases = {
pd = "/home/meyer/dev/ts/pnpm/pnpm/dev/pd.js";
};
packages = with pkgs;
[
cpkg.chrome-pak-customizer
lemminx
deno
eslint_d
vscode-langservers-extracted
nodePackages_latest.typescript-language-server
typescript
unstable.eslint
corepack_22
nodejs_22
] ++ (with pkgs.nodePackages; [
nodemon
ts-node
pnpm
live-server
]);
};
}