dotfiles/user-modules/systemwide/default.nix

11 lines
211 B
Nix
Raw Normal View History

{ lib, ... }:
2024-07-18 11:48:49 +00:00
with lib;
2024-07-18 11:48:49 +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
}