1
Fork 0

add a todo

main
Motiejus Jakštys 2023-03-26 22:40:53 +03:00
parent 8719d3eafa
commit 90f07dfe93
1 changed files with 8 additions and 2 deletions

View File

@ -11,11 +11,17 @@
flake-utils.lib.eachDefaultSystem (system: flake-utils.lib.eachDefaultSystem (system:
let let
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs { inherit system; };
devDeps = with pkgs; [ bash hugo zopfli brotli parallel ];
in in
{ {
devShells.default = with pkgs; mkShell { devShells.default = pkgs.mkShell {
name = "rules_nixpkgs_shell"; name = "rules_nixpkgs_shell";
packages = [ bash hugo zopfli brotli parallel ]; packages = devDeps;
}; };
# TODO how to run scripts/build as a result of `nix run .`?
#packages = flake-utils.lib.mkApp {
# name = "build
#};
}); });
} }