nixos-config/modules/variables/look/border/default.nix

13 lines
191 B
Nix
Raw Normal View History

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