NixOS upgrade showing what will be changed.
Use one or more of the following options:
$ nix run github:otov4its/nixos-upgrade/stable
$ nix shell github:otov4its/nixos-upgrade/stable
$ nix profile install github:otov4its/nixos-upgrade/stable
{
inputs = {
# ...
nixos-upgrade = {
url = "github:otov4its/nixos-upgrade/stable";
# Optionally
inputs.nixpkgs.follows = "nixpkgs";
}
};
outputs = { self, ... }@inputs:
{
nixosConfigurations = {
# ...
modules = [
# ...
inputs.nixos-upgrade.nixosModules.default
{
programs.nixos-upgrade.enable = true;
}
];
}
}
}
$ nix develop
$ nix build .#dev
$ ./result-dev/bin/nixos-upgrade
See CHANGELOG
Your PRs are welcome and greatly appreciated.
Distributed under the MIT License. See LICENSE for more information.