.dotfiles/pkgs/flake/niri-resize/default.nix
Leon Schwarzäugl b45746e127
Some checks failed
Build and Deploy / build (push) Has been cancelled
Flake check / Check flake (push) Has been cancelled
Build and Deploy / deploy (push) Has been cancelled
feat: switch to niri+noctalia
2026-02-07 03:10:47 +01:00

6 lines
174 B
Nix

{ self, name, writeShellApplication, jq }:
writeShellApplication {
inherit name;
runtimeInputs = [ jq ];
text = builtins.readFile "${self}/files/scripts/${name}.sh";
}