feat(home): Install nix-output-monitor

This commit is contained in:
punkfairie 2025-03-09 10:59:40 -07:00
parent 6a9d7347a0
commit c35341d9e3
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 17 additions and 0 deletions

View file

@ -29,6 +29,7 @@ in {
man = enabled;
neo = enabled;
nh = enabled;
nix-output-monitor = enabled;
rbw = enabled;
ripgrep = enabled;
ssh = enabled;

View file

@ -0,0 +1,16 @@
{
lib,
config,
pkgs,
...
}: let
cfg = config.marleyos.programs.nix-output-monitor;
in {
options.marleyos.programs.nix-output-monitor.enable = lib.mkEnableOption "nix-output-monitor";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
nix-output-monitor
];
};
}