citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

util.nix (114B)


      1 { pkgs }:
      2 {
      3   writeBash = fname: body: pkgs.writeScript fname ''
      4     #! ${pkgs.bash}/bin/bash
      5     ${body}
      6   '';
      7 }