mirror of
https://github.com/vale981/master-thesis
synced 2025-03-06 10:31:37 -05:00
18 lines
485 B
Nix
18 lines
485 B
Nix
{
|
|
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 = ./.;
|
|
};
|
|
});
|
|
}
|