.dotfiles/pkgs/screenshare/default.nix

7 lines
169 B
Nix

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