nixfiles/pkgs/upgrade-system/default.nix
2024-05-13 00:31:24 +02:00

14 lines
217 B
Nix

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