feat(home): Install nix-output-monitor
This commit is contained in:
parent
6a9d7347a0
commit
c35341d9e3
2 changed files with 17 additions and 0 deletions
|
@ -29,6 +29,7 @@ in {
|
|||
man = enabled;
|
||||
neo = enabled;
|
||||
nh = enabled;
|
||||
nix-output-monitor = enabled;
|
||||
rbw = enabled;
|
||||
ripgrep = enabled;
|
||||
ssh = enabled;
|
||||
|
|
16
modules/home/programs/cli/nix-output-monitor/default.nix
Normal file
16
modules/home/programs/cli/nix-output-monitor/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue