mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
Gabriel Arazas
580e0ebe93
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.
20 lines
427 B
Nix
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
|
|
];
|
|
}
|