mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 00:57:22 +01:00
6 lines
268 B
Nix
6 lines
268 B
Nix
{ self, name, writeShellApplication, kitty, element-desktop, vesktop, spotify-player, jq }:
|
|
writeShellApplication {
|
|
inherit name;
|
|
runtimeInputs = [ kitty element-desktop vesktop spotify-player jq ];
|
|
text = builtins.readFile "${self}/files/scripts/${name}.sh";
|
|
}
|