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

9 lines
196 B
Nix

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