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

12 lines
149 B
Nix

{ config, lib, ... }:
{
imports = [
./border
./colors
./fonts
];
options.look = lib.mkOption {
type = lib.types.attrs;
};
}