nixos/home/scripts/noita-helper.nix
Torjus Håkestad 37b77e4880
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m29s
Periodic flake update / flake-update (push) Successful in 2m19s
Add noita-helper script
2025-05-04 11:25:32 +02:00

15 lines
250 B
Nix

{ 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 ];
}