13 lines
191 B
Nix
13 lines
191 B
Nix
|
{ lib, config, ... }:
|
||
|
{
|
||
|
options.look.border = lib.mkOption {
|
||
|
type = lib.types.attrs;
|
||
|
default = {};
|
||
|
};
|
||
|
|
||
|
config.look.border = rec {
|
||
|
int = 3;
|
||
|
string = toString int;
|
||
|
};
|
||
|
}
|