-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4090aaf
commit de0add4
Showing
3 changed files
with
36 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
{ pkgs, lib, config, inputs, ... }: | ||
|
||
let | ||
pkgs-unstable = import inputs.nixpkgs-unstable { system = pkgs.stdenv.system; }; | ||
in | ||
{ | ||
env.GREET = "jmclothingmfr.com dev environment"; | ||
packages = [ pkgs.git pkgs.hugo ]; | ||
languages.nix.enable = true; | ||
languages.javascript.enable = true; | ||
languages.javascript.npm.enable = true; | ||
languages.typescript.enable = true; | ||
languages.go.enable = true; | ||
|
||
packages = [ pkgs.git pkgs-unstable.hugo ]; | ||
enterShell = '' | ||
git --version | ||
''; | ||
enterTest = '' | ||
echo "Running tests" | ||
git --version | grep "2.42.0" | ||
git --version | grep --color=auto "${pkgs.git.version}" | ||
''; | ||
languages.nix.enable = true; | ||
languages.javascript.enable = true; | ||
languages.javascript.npm.enable = true; | ||
languages.typescript.enable = true; | ||
|
||
# See full reference at https://devenv.sh/reference/options/ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters