dooris/flake.nix
lilly 504d64ea57
All checks were successful
Build Container / Build Container (push) Successful in 1m42s
init small ssh-cli to accept commands over SSH and operate local locks
2026-07-18 23:20:07 +02:00

36 lines
657 B
Nix

{
description = "dooris";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { system = system; };
in
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
uv
pre-commit
ruff
python3
pnpm
rustc
cargo
rust-analyzer
rustfmt
];
};
}
);
}