17 lines
296 B
Nix
17 lines
296 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./gammastep
|
|
./tools
|
|
];
|
|
|
|
options.homeModules.desktop.wayland.utility = {
|
|
tools = {
|
|
enable = lib.mkEnableOption "Enable wayland specific tools";
|
|
};
|
|
gammastep = {
|
|
enable = lib.mkEnableOption "Enable gammastep module";
|
|
};
|
|
};
|
|
}
|