This commit is contained in:
nora 2025-09-13 17:54:28 +02:00
parent 67c1ae558d
commit 968ae89998
6 changed files with 57 additions and 4 deletions

View file

@ -0,0 +1,9 @@
{ pkgs, ... }: pkgs.writeShellApplication {
name = "sl";
runtimeInputs = with pkgs; [ niri jq ];
derivationArgs = {
# shellcheck can't comprehend our amazingly new bash syntax
checkPhase = null;
};
text = builtins.readFile ./sl.sh;
}