nixos-config/modules/variables/look/border/default.nix
2025-02-25 02:14:16 -05:00

12 lines
191 B
Nix

{ config, lib, ... }:
{
options.look.border = lib.mkOption {
type = lib.types.attrs;
default = {};
};
config.look.border = rec {
int = 3;
string = toString int;
};
}