13 lines
203 B
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
|
|
];
|
|
}
|
|
|