.dotfiles/pkgs/screenshare/default.nix
2024-12-29 00:23:43 +01:00

9 lines
197 B
Nix

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