blog/flake.nix

27 lines
567 B
Nix
Raw Normal View History

2024-04-09 17:35:56 -04:00
{
description = "walkah's blog";
inputs = {
2024-05-23 15:37:43 -04:00
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
2024-04-09 17:35:56 -04:00
flake-utils.url = "github:numtide/flake-utils";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
};
outputs = { nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
name = "blog";
2024-05-23 15:37:43 -04:00
buildInputs = with pkgs; [ deno ];
2024-04-09 17:35:56 -04:00
};
}
);
}