website/flake.nix
Jan Kremer c0dde83f58
Revert "Nix: move to devshell"
This reverts commit 8c9f075a4e.
2024-05-10 20:10:19 +02:00

22 lines
482 B
Nix

{
description = "Hugo website";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs =
{ nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
packages = [
pkgs.go
pkgs.hugo
];
};
}
);
}