···71717272## Installation
73737474-Follow the installation instructions at [Tsutsumi](https://github.com/Fuwn/tsutsumi),
7575-which provides both flake and flake-less installation options.
7474+You can either install Yae through the flake that this repository exposes or
7575+through [Tsutsumi](https://github.com/Fuwn/tsutsumi).
7676+7777+[Tsutsumi](https://github.com/Fuwn/tsutsumi) provides both flake and flake-less installation
7878+options, while this repsitory only provides installation support through flakes using the
7979+exported `inputs.yae.packages.${pkgs.system}.yae` package.
8080+8181+<details closed>
8282+ <summary>Click here to see a minimal Nix flake that exposes a development shell with Yae bundled.</summary>
8383+8484+```nix
8585+# Enter the development shell using `nix develop --impure` (impure is used here because `nixpkgs` internally
8686+# assigns `builtins.currentSystem` to `nixpkgs.system` for the sake of simplicity in this example)
8787+{
8888+ inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
8989+9090+ inputs.tsutsumi = {
9191+ url = "github:Fuwn/tsutsumi";
9292+ inputs.nixpkgs.follows = "nixpkgs";
9393+ };
76947777-Alternatively, without flake-less support, install the
7878-`inputs.yae.packages.${pkgs.system}.yae` package exposed by this flake.
9595+ outputs = { nixpkgs, tsutsumi, self }:
9696+ let pkgs = import nixpkgs { inherit self; }; in {
9797+ devShells.${pkgs.system}.default = pkgs.mkShell {
9898+ buildInputs = [ tsutsumi.packages.${pkgs.system}.yae ];
9999+ };
100100+ };
101101+}
102102+```
103103+</details>
7910480105### Integrating with Nix
81106