File tree 1 file changed +6
-0
lines changed 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 12
12
let
13
13
pkgs = nixpkgs . legacyPackages . ${ system } ;
14
14
formatter = pkgs . nixpkgs-fmt ;
15
+ # Check in https://search.nixos.org/packages to find new packages.
16
+ # Use `nix flake update` to update the lock file if packages are out-of-date.
15
17
devShellPackages = with pkgs ; [
16
18
bat
17
19
bash
107
109
# Using Nix instead of Docker is **significantly** faster. This _build_
108
110
# doesn't really build anything, it just copies pre-built binaries into
109
111
# a container and adds them to the $PATH.
112
+ #
113
+ # To test changes and iterate on this, you can run:
114
+ # > nix build .#devEnvImage && ./result | docker load
115
+ # This will import the image into your local Docker daemon.
110
116
devEnvImage = pkgs . dockerTools . streamLayeredImage {
111
117
name = "codercom/oss-dogfood" ;
112
118
tag = "testing" ;
You can’t perform that action at this time.
0 commit comments