NixOS-Config/variables/look/border/default.nix

13 lines
191 B
Nix
Raw Permalink Normal View History

2024-10-15 02:40:43 -04:00
{ lib, config, ... }:
{
options.look.border = lib.mkOption {
type = lib.types.attrs;
default = {};
};
config.look.border = rec {
int = 3;
string = toString int;
};
}