Compare commits

..

No commits in common. "b1b041a792ea101999564f9049d4ca7933fc5a07" and "9ef24afbaf93790133e5f11bade2796fee6f9071" have entirely different histories.

View file

@ -11,10 +11,12 @@
nixpkgs, nixpkgs,
flake-utils, flake-utils,
}: }:
flake-utils.lib.eachDefaultSystem (system: flake-utils.lib.eachDefaultSystem (system: let
with import nixpkgs {inherit system;}; { pkgs = import nixpkgs {inherit system;};
in
with pkgs; {
devShells.default = mkShell { devShells.default = mkShell {
packages = [hugo]; buildInputs = [hugo];
}; };
}); });
} }