nixos-config/modules/nixos/_private/workflows/default.nix
Gabriel Arazas 580e0ebe93
nixos/workflows: restructure enable option
The type is probably not apprioriate since I want to be able to install
multiple of them at a given time but we'll see.
2024-05-18 16:41:21 +08:00

20 lines
427 B
Nix

# 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, ... }:
{
options.workflows.enable = lib.mkOption {
type = with lib.types; listOf (enum [ ]);
default = [ ];
description = ''
A list of workflows to be enabled.
'';
};
imports = [
./a-happy-gnome
./knome
];
}