feat(flake): change ags devshell to node
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
092626a7db
commit
f50ee16e0f
4 changed files with 12 additions and 7 deletions
13
flake.in.nix
13
flake.in.nix
|
@ -137,10 +137,15 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
ags = pkgs.mkShell {
|
node = pkgs.mkShell {
|
||||||
packages = with pkgs; [
|
packages = with pkgs;
|
||||||
nodejs_latest
|
[
|
||||||
];
|
nodejs_latest
|
||||||
|
typescript
|
||||||
|
]
|
||||||
|
++ (with nodePackages; [
|
||||||
|
ts-node
|
||||||
|
]);
|
||||||
};
|
};
|
||||||
|
|
||||||
subtitles-dev = pkgs.mkShell {
|
subtitles-dev = pkgs.mkShell {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
use flake $FLAKE#ags
|
use flake $FLAKE#node
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
use flake $FLAKE#ags
|
use flake $FLAKE#node
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
use flake $FLAKE#ags
|
use flake $FLAKE#node
|
||||||
|
|
Loading…
Reference in a new issue