Compare commits

...

2 commits

Author SHA1 Message Date
Gabe Venberg b1b041a792 more nits. 2024-04-22 21:31:59 -05:00
Gabe Venberg a20c3cc420 changed around nix flake. 2024-04-22 21:20:29 -05:00

View file

@ -11,12 +11,10 @@
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];
packages = [hugo];
};
});
}