Add an empty kodi role.

This commit is contained in:
Tom Alexander
2025-01-20 19:40:54 -05:00
parent ccbc999744
commit 9d49eb9d6a
4 changed files with 59 additions and 2 deletions

View File

@@ -8,6 +8,23 @@
{
imports = [ ];
environment.systemPackages = with pkgs; [
];
options.me = {
blank.enabled = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = "Whether we want to install blank.";
};
};
config = lib.mkIf config.me.blank.enabled (
lib.mkMerge [
{
environment.systemPackages = with pkgs; [
];
}
(lib.mkIf config.me.graphical {
})
]
);
}