changed around nix flake.

This commit is contained in:
Gabe Venberg 2024-04-22 21:20:29 -05:00
parent 9ef24afbaf
commit a20c3cc420

View file

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