.dotfiles/pkgs/swarsel-rebuild/default.nix
2025-07-04 18:26:00 +02:00

6 lines
176 B
Nix

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