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

11 lines
173 B
Nix

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