nixos-config/modules/nixos/_private/workflows/default.nix

20 lines
427 B
Nix
Raw Normal View History

# 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
{
options.workflows.enable = lib.mkOption {
type = with lib.types; listOf (enum [ ]);
default = [ ];
description = ''
A list of workflows to be enabled.
'';
};
2020-10-20 15:56:10 +00:00
imports = [
./a-happy-gnome
./knome
];
2020-08-16 08:33:44 +00:00
}