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

12 lines
200 B
Nix

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