current
 1{den, ...}: {
 2  den.aspects.desktop.includes = [den.aspects.desktop._.icon-theme];
 3
 4  den.aspects.desktop.provides.icon-theme.nixos = {pkgs, ...}: {
 5    stylix.icons = let
 6      whitesur-icon-theme = pkgs.whitesur-icon-theme.override {
 7        boldPanelIcons = true;
 8        alternativeIcons = true;
 9      };
10    in {
11      enable = true;
12      light = "WhiteSur";
13      dark = "WhiteSur";
14      package = whitesur-icon-theme;
15    };
16  };
17
18  den.aspects.desktop.provides.icon-theme.homeManager = {osConfig, ...}: {
19    stylix.icons = osConfig.stylix.icons;
20  };
21}