13 lines
176 B
Nix
13 lines
176 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
cfg = config.marleyos.xorg;
|
|
in {
|
|
options.marleyos.xorg.enable = lib.mkEnableOption "xorg";
|
|
|
|
# config = lib.mkIf cfg.enable {
|
|
#
|
|
# };
|
|
}
|