Using nix-output-monitor flake #503
Answered
by
NotAShelf
claymorwan
asked this question in
Q&A
-
|
I'm trying to use nix-output-monitor's flake since the stable version on the nixpkgs doesn't have a recent feature that was added (showing download progress in bytes). Issue im not sure how i shoudl override nh to do so, rn im doing this: {
programs.nh = {
enable = true;
package = pkgs.nh.overrideAttrs (_: {
runtimeDeps = [
inputs.nix-output-monitor.packages.${system}.default
];
});
}
}which does builds but it doesn't seem to be using the flake version, maybe im doing it wrong |
Beta Was this translation helpful? Give feedback.
Answered by
NotAShelf
Dec 8, 2025
Replies: 1 comment 1 reply
-
pkgs.nh.override {
nix-output-monitor = inputs.nix-output-monitor.packages.${system}.default;
}Otherwise you get two nix-output-monitors in your closure. Alternative use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
claymorwan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Otherwise you get two nix-output-monitors in your closure. Alternative use
nixpkgs.overlaysfor the override.