16 lines
298 B
Nix
16 lines
298 B
Nix
{ config, options, lib, pkgs, ... }:
|
|
let
|
|
inherit (lib.modules) mkIf;
|
|
in
|
|
{
|
|
options.modules.develop = let
|
|
inherit (lib.options) mkEnableOption;
|
|
in
|
|
{
|
|
xdg.enable = mkEnableOption "XDG-related conf" // { default = true; };
|
|
};
|
|
|
|
config = mkIf conf.modules.develop.xdg.enable {
|
|
|
|
};
|
|
}
|