{
  description = "Zero temperature energy flow with a single qubit coupled to a bath.";

  inputs = {
    nixpkgs.url = "nixpkgs/nixos-unstable";
    utils.url = "github:vale981/hiro-flake-utils";
  };

  outputs = { self, utils, nixpkgs, ... }:
    (utils.lib.poetry2nixWrapper nixpkgs {
      name = "01_zero_temp";
      shellPackages = pkgs: with pkgs; [ pyright python3Packages.jupyter ];
      noPackage = true;
      poetryArgs = {
        projectDir = ./.;
      };
    });
}