18
devenv.nix
Normal file
18
devenv.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
packages = with pkgs; [
|
||||
git
|
||||
just
|
||||
];
|
||||
dotenv = {
|
||||
enable = true;
|
||||
filename = [
|
||||
".env"
|
||||
];
|
||||
};
|
||||
languages = {
|
||||
javascript.enable = true;
|
||||
javascript.corepack.enable = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user