mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 21:29:12 +02:00
6 lines
180 B
Nix
6 lines
180 B
Nix
{ self, name, writeShellApplication, kitty }:
|
|
writeShellApplication {
|
|
inherit name;
|
|
runtimeInputs = [ kitty ];
|
|
text = builtins.readFile "${self}/files/scripts/${name}.sh";
|
|
}
|