28 lines
466 B
Nix
28 lines
466 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
cfg = config.marleyos.bundles.desktop;
|
|
|
|
inherit (lib.marleyos) enabled;
|
|
in {
|
|
options.marleyos.bundles.desktop.enable = lib.mkEnableOption "desktop";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
marleyos = {
|
|
mounts.babeshare = enabled;
|
|
|
|
appearance = {
|
|
base = enabled;
|
|
console = enabled;
|
|
};
|
|
|
|
programs = {
|
|
cli = enabled;
|
|
tui = enabled;
|
|
gui = enabled;
|
|
};
|
|
};
|
|
};
|
|
}
|