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