.dotfiles/pkgs/screenshare/default.nix
2025-07-04 18:26:00 +02:00

6 lines
178 B
Nix

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