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

@@ -266,6 +266,15 @@ in
./notification.nix
];
options.me = {
sway.enabled = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = "Whether we want to install sway.";
};
};
options.me.swayIncludes = lib.mkOption {
type = lib.types.listOf lib.types.package;
default = [ ];