rachel.cafe/flake.nix

15 lines
305 B
Nix
Raw Normal View History

2023-08-02 17:01:40 +02:00
{
description = "My website";
2023-12-08 22:09:59 +01:00
inputs = {
flake-utils.url = "github:numtide/flake-utils";
2023-08-02 17:04:41 +02:00
};
2023-12-08 22:09:59 +01:00
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (sys: {
devShells.default = import ./shell.nix {
pkgs = nixpkgs.legacyPackages.${sys};
};
});
2023-08-02 17:01:40 +02:00
}