Compare commits
No commits in common. "b1b041a792ea101999564f9049d4ca7933fc5a07" and "9ef24afbaf93790133e5f11bade2796fee6f9071" have entirely different histories.
b1b041a792
...
9ef24afbaf
|
@ -11,10 +11,12 @@
|
|||
nixpkgs,
|
||||
flake-utils,
|
||||
}:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
with import nixpkgs {inherit system;}; {
|
||||
flake-utils.lib.eachDefaultSystem (system: let
|
||||
pkgs = import nixpkgs {inherit system;};
|
||||
in
|
||||
with pkgs; {
|
||||
devShells.default = mkShell {
|
||||
packages = [hugo];
|
||||
buildInputs = [hugo];
|
||||
};
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue