1
0
Fork 0
nixfiles/pkgs/clerie-system-upgrade/clerie-system-upgrade.nix

12 lines
196 B
Nix

{ pkgs, ... }:
pkgs.writeShellApplication {
name = "clerie-system-upgrade";
text = builtins.readFile ./clerie-system-upgrade.sh;
runtimeInputs = with pkgs; [
curl
jq
nix
];
}