1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/pkgs/upgrade-system/default.nix

14 lines
217 B
Nix
Raw Normal View History

2024-05-12 19:54:39 +02:00
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "upgrade-system";
text = builtins.readFile ./upgrade-system.sh;
runtimeInputs = with pkgs; [
curl
jq
nix
gnugrep
nixos-needsreboot
];
}