.dotfiles/pkgs/swarsel-rebuild/default.nix
2024-12-29 00:36:04 +01:00

6 lines
170 B
Nix

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