2024-05-16 10:34:23 +00:00
|
|
|
# Themes are your graphical sessions. It also contains your aesthetics even
|
|
|
|
# specific workflow and whatnots. You can also show your desktop being
|
|
|
|
# modularized like this.
|
|
|
|
{ lib, ... }:
|
2020-08-16 08:33:44 +00:00
|
|
|
|
2024-05-16 10:34:23 +00:00
|
|
|
{
|
|
|
|
options.workflows.enable = lib.mkOption {
|
|
|
|
type = with lib.types; listOf (enum [ ]);
|
|
|
|
default = [ ];
|
2021-12-25 12:32:52 +00:00
|
|
|
description = ''
|
2024-05-16 10:34:23 +00:00
|
|
|
A list of workflows to be enabled.
|
2021-12-25 12:32:52 +00:00
|
|
|
'';
|
|
|
|
};
|
2020-10-20 15:56:10 +00:00
|
|
|
|
2022-11-25 05:37:17 +00:00
|
|
|
imports = [
|
|
|
|
./a-happy-gnome
|
|
|
|
./knome
|
|
|
|
];
|
2020-08-16 08:33:44 +00:00
|
|
|
}
|