2022-01-18 15:47:53 +01:00
|
|
|
{
|
|
|
|
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 {
|
2022-01-19 15:47:47 +01:00
|
|
|
name = "03_gaussian";
|
2022-01-18 15:47:53 +01:00
|
|
|
shellPackages = pkgs: with pkgs; [ pyright python3Packages.jupyter ];
|
2022-01-19 15:36:24 +01:00
|
|
|
shellOverride = (oldAttrs: {
|
|
|
|
shellHook = ''
|
2022-01-19 15:45:54 +01:00
|
|
|
#export PYTHONPATH=/home/hiro/src/hopsflow/$PYTHONPATH
|
2022-01-19 15:36:24 +01:00
|
|
|
'';
|
|
|
|
});
|
2022-01-18 15:47:53 +01:00
|
|
|
noPackage = true;
|
|
|
|
poetryArgs = {
|
|
|
|
projectDir = ./.;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|