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

9 lines
203 B
Nix

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