Add noita-helper script
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m29s
Periodic flake update / flake-update (push) Successful in 2m19s

This commit is contained in:
2025-05-04 11:25:32 +02:00
parent 51bd1d04e9
commit 37b77e4880
3 changed files with 47 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
{ pkgs, ... }:
let
noita-helper = pkgs.writeShellApplication {
name = "noita-helper";
runtimeInputs = with pkgs; [
grim
jq
];
text = (builtins.readFile ./noita-helper.sh);
};
in
{
home.packages = [ noita-helper ];
}