1
0
Fork 0
nixfiles/pkgs/clerie-update-nixfiles/clerie-update-nixfiles.nix

13 lines
203 B
Nix

{ pkgs, ... }:
pkgs.writeShellApplication {
name = "clerie-update-nixfiles";
text = builtins.readFile ./clerie-update-nixfiles.sh;
runtimeInputs = with pkgs; [
git
nix
openssh
];
}