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