rachel.cafe/flake.nix

10 lines
190 B
Nix
Raw Normal View History

2023-08-02 17:01:40 +02:00
{
description = "My website";
2023-08-02 17:04:41 +02:00
outputs = { self, nixpkgs }: {
devShells.x86_64-linux.default = import ./shell.nix {
pkgs = nixpkgs.legacyPackages."x86_64-linux";
};
};
2023-08-02 17:01:40 +02:00
}