Revert "tree-wide: remove nix-monitored"

This reverts commit da7e72db64.
This commit is contained in:
Primrose 2026-01-01 16:23:52 +01:00
parent efbb62df7e
commit 621944c7d2
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
4 changed files with 30 additions and 0 deletions

View file

@ -40,9 +40,12 @@ in
# use lix everywhere and wrap it with nom
../overlays/lix.nix
../overlays/nix-monitored.nix
];
};
nix.package = pkgs.nix-monitored;
system.nixos =
let
rev = lib.substring 0 8 sources.nixpkgs.revision;

View file

@ -45,9 +45,12 @@ in
# use lix everywhere and wrap it with nom
../overlays/lix.nix
../overlays/nix-monitored.nix
];
};
nix.package = pkgs.nix-monitored;
system.nixos =
let
rev = lib.substring 0 8 sources.nixpkgs.revision;

View file

@ -0,0 +1,10 @@
let
sources = import ../../npins;
in
# The final nix is lix in this case
final: prev: {
nix-monitored = sources.nix-monitored.asFlake.packages.${final.stdenv.hostPlatform.system}.default.override {
inherit (final) nix;
withNotify = false; # noisy, spams "command completed" even for nix shells
};
}