main
 1{
 2  flake.modules.nixos.desktop = {pkgs, ...}: {
 3    stylix.icons = let
 4      whitesur-icon-theme = pkgs.whitesur-icon-theme.override {
 5        boldPanelIcons = true;
 6        alternativeIcons = true;
 7      };
 8    in {
 9      enable = true;
10      light = "WhiteSur";
11      dark = "WhiteSur";
12      package = whitesur-icon-theme;
13    };
14  };
15
16  flake.modules.homeManager.desktop = {osConfig, ...}: {
17    stylix.icons = osConfig.stylix.icons;
18  };
19}