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