1
0

pkgs/clerie-update-nixfiles: Add script that merges back nixfiles updates

This commit is contained in:
2024-03-19 17:31:18 +01:00
parent 79d9bffba1
commit 0fb89ef74d
4 changed files with 137 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "clerie-merge-nixfiles-update";
text = builtins.readFile ./clerie-merge-nixfiles-update.sh;
runtimeInputs = with pkgs; [
curl
git
jq
openssh
];
}