This commit is contained in:
atagen 2026-05-19 23:39:49 +10:00
parent e598b04cae
commit 33313e0634
28 changed files with 357 additions and 742 deletions

View file

@ -19,14 +19,21 @@ in
type = types.package;
description = "your ideal meat";
};
differ = mkOption {
type = types.package;
description = "diffing tool to use";
default = pkgs.dix;
};
monitor = mkOption {
type = types.package;
description = "nix monitoring tool to use";
default = pkgs.nix-output-monitor;
};
};
config = lib.mkIf cfg.enable {
environment.sessionVariables.MEATS = cfg.flake;
environment.systemPackages = [
cfg.package
pkgs.nh # for now..
pkgs.nix-output-monitor
pkgs.dix
];
};
}