nixos-config/home/themes/default.nix

25 lines
405 B
Nix

{ config, lib, ... }:
with lib;
let
themeType = types.submodule {
options = {
i3Theme = mkOption {
type = import ./i3.nix { inherit lib; };
};
};
};
in
{
options.my.theme = mkOption {
type = themeType;
};
options.my.themes = mkOption {
type = with types; attrsOf themeType;
};
config.my.themes = {
solarizedLight = import ./solarizedLight;
};
}