techWebsite/flake.nix

21 lines
425 B
Nix
Raw Normal View History

2024-03-24 12:33:37 -05:00
{
description = "hugo development environment";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
self,
nixpkgs,
flake-utils,
}:
2024-04-22 21:20:29 -05:00
flake-utils.lib.eachDefaultSystem (system:
with import nixpkgs {inherit system;}; {
2024-03-24 12:33:37 -05:00
devShells.default = mkShell {
buildInputs = [hugo];
};
});
}