21 lines
422 B
Nix
21 lines
422 B
Nix
{
|
|
description = "hugo development environment";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
flake-utils,
|
|
}:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
with import nixpkgs {inherit system;}; {
|
|
devShells.default = mkShell {
|
|
packages = [hugo];
|
|
};
|
|
});
|
|
}
|