Install graphviz.

This commit is contained in:
Tom Alexander
2026-01-02 10:11:30 -05:00
parent e106a9fad1
commit 07a8882766
5 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
options.me = {
graphviz.enable = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = "Whether we want to install graphviz.";
};
};
config = lib.mkIf config.me.graphviz.enable {
environment.systemPackages = with pkgs; [
graphviz
];
};
}