EliverLara / candy-icons

:lollipop: Sweet gradient icons
https://www.opendesktop.org/p/1305251/
GNU General Public License v3.0
1.05k stars 117 forks source link

FR: Nix Package #499

Open arunoruto opened 1 year ago

arunoruto commented 1 year ago

It would be nice to have this awesome icon pack as a nix package here.

arunoruto commented 7 months ago

If someone is interested in installing the icon pack the "nix way", here a small config file on how I achieved it:

{ pkgs, lib, ...}
let
  # ...
  candy-icons = builtins.fetchGit {
    url = "https://github.com/EliverLara/candy-icons";
    ref = "master";
  };
  # ...
in
{
  # ...
  home.file = {
    ".local/share/icons/candy-icons" = {
      recursive = true;
      source = "${candy-icons}";
    };
  };
  # ...
  dconf.settings = {
    # ...
    "org/gnome/desktop/interface" = {
      icon-theme = "candy-icons";
    };
    # ...
  };
}