1
0
Files
nixfiles/pkgs/bijwerken-system-upgrade/default.nix

12 lines
202 B
Nix

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