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