mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2026-01-03 01:25:59 +00:00
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Id2a35a495667cfd89b795acef5540e386a6a6964
15 lines
282 B
Nix
15 lines
282 B
Nix
{
|
|
lib,
|
|
btop,
|
|
}:
|
|
btop.overrideAttrs {
|
|
patches = [
|
|
./patches/normalize_processes.patch
|
|
];
|
|
|
|
meta = {
|
|
description = "Monitor of resources, with a patch to normalize process names on Nix";
|
|
mainProgram = "btop";
|
|
maintainers = [lib.maintainers.NotAShelf];
|
|
};
|
|
}
|