summaryrefslogtreecommitdiffstats
path: root/modules/nixos/sils/theming/default.nix
blob: 054799dbced1561091d628cf36f389891423622b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  config,
  lib,
  ...
}: let
  cfg = config.sils.theming;
in {
  options.sils.theming.enable = lib.mkEnableOption "theming";
  config = lib.mkIf cfg.enable {
    stylix = {
      base16Scheme = ./tokyo-night-dark.yaml;
      image = ../../../files/wallpaper.jpg;
      polarity = "dark";
    };
  };
}