17 lines
225 B
Nix
17 lines
225 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.local.baseline;
|
|
in {
|
|
options.local.baseline = {
|
|
enable = mkEnableOption "Basic settings";
|
|
};
|
|
config = mkIf cfg.enable {
|
|
xdg.enable = true;
|
|
};
|
|
}
|