init: Rust/Ratatui TUI project scaffold with nix flake

This commit is contained in:
Alexander
2026-05-08 12:31:19 +02:00
commit e68342c93a
7 changed files with 962 additions and 0 deletions
+67
View File
@@ -0,0 +1,67 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs";
flake-parts.url = "github:hercules-ci/flake-parts";
git-hooks.url = "github:cachix/git-hooks.nix";
};
outputs =
{
self,
nixpkgs,
flake-parts,
git-hooks,
...
}@inputs:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
];
perSystem =
{
system,
...
}:
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
pre-commit-check = git-hooks.lib.${system}.run {
src = ./.;
hooks = {
nixfmt.enable = true;
rustfmt.enable = true;
clippy.enable = true;
};
};
in
{
formatter = pkgs.nixfmt-tree;
checks = {
inherit pre-commit-check;
};
devShells.default = pkgs.mkShell {
inherit (pre-commit-check) shellHook;
buildInputs = with pkgs; [
pre-commit
gitleaks
just
nixd
rustc
cargo
rust-analyzer
clippy
rustfmt
];
};
};
};
}