Flake that provides the 9front fork of drawterm, which adds DP9IK authentication, rcpu, and other features.
With flakes and nix-command features enabled, run nix run github:KSPAtlas/drawterm-flake.
In your flake, put
inputs = {
drawterm.url = "github:KSPAtlas/drawterm-flake";
...
}and wherever you want to put the package, put inputs.drawterm.packages."${system}".default. For example,
environment.systemPackages = with pkgs; [
inputs.drawterm.packages."${system}".default
];