.dotfiles/pkgs/screenshare/default.nix
2024-12-29 00:36:04 +01:00

6 lines
172 B
Nix

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