nixos-config/modules/home/variables/look/border/default.nix
2025-02-25 03:03:43 -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;
};
}