feat: nix-output-monitor
This commit is contained in:
parent
f717547060
commit
bad48abd05
3 changed files with 6 additions and 3 deletions
|
@ -17,6 +17,7 @@ in {
|
|||
jq = enabled;
|
||||
less = enabled;
|
||||
neovim = enabled;
|
||||
nix-output-monitor = enabled;
|
||||
};
|
||||
}
|
||||
#
|
||||
|
|
|
@ -5,5 +5,6 @@
|
|||
./jq.nix
|
||||
./less.nix
|
||||
./neovim.nix
|
||||
./nix-output-monitor.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
cfg = config.marleyos.programs.nix-output-monitor;
|
||||
in {
|
||||
options.marleyos.programs.nix-output-monitor.enable = lib.mkEnableOption "nix-output-monitor";
|
||||
options.marleyos.programs.nix-output-monitor.enable =
|
||||
lib.mkEnableOption "nix-output-monitor";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
environment.systemPackages = with pkgs; [
|
||||
nix-output-monitor
|
||||
];
|
||||
};
|
Loading…
Reference in a new issue