2025-02-16 17:15:44 +00:00
|
|
|
{ lib, ... }:
|
2024-07-18 11:48:49 +00:00
|
|
|
|
2025-02-16 17:15:44 +00:00
|
|
|
with lib;
|
2024-07-18 11:48:49 +00:00
|
|
|
{
|
2025-02-16 17:15:44 +00:00
|
|
|
options.systemwide = mkOption {
|
|
|
|
type = types.attrsOf types.anything;
|
|
|
|
default = { };
|
|
|
|
description = "Systemwide configuration required for user-specific settings.";
|
|
|
|
};
|
2024-07-19 12:00:55 +00:00
|
|
|
}
|