feat(flake): change ags devshell to node
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-07-20 09:38:17 -04:00
parent 092626a7db
commit f50ee16e0f
4 changed files with 12 additions and 7 deletions

View file

@ -137,10 +137,15 @@
];
};
ags = pkgs.mkShell {
packages = with pkgs; [
nodejs_latest
];
node = pkgs.mkShell {
packages = with pkgs;
[
nodejs_latest
typescript
]
++ (with nodePackages; [
ts-node
]);
};
subtitles-dev = pkgs.mkShell {

View file

@ -1 +1 @@
use flake $FLAKE#ags
use flake $FLAKE#node

View file

@ -1 +1 @@
use flake $FLAKE#ags
use flake $FLAKE#node

View file

@ -1 +1 @@
use flake $FLAKE#ags
use flake $FLAKE#node