Files
backblaze-invoices-downloader/flake.nix
Jan Bader d343a48af1 Add flake
2026-04-04 20:31:37 +02:00

26 lines
527 B
Nix

{
description = "Development environment for jbackup";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default";
flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "systems";
};
};
outputs = { nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in with pkgs; rec {
devShell = pkgs.mkShell {
packages = with pkgs; [
python3
];
};
}
);
}