nix-config/packages/default.nix
Donovan Glover 7b7d967250
Revert "eww: Switch from fluent icons to candy icons"
Note that I may experiment with lutgen to make folder icons that match
the color scheme.
2024-01-02 18:51:49 -05:00

17 lines
353 B
Nix

{ pkgs, ... }:
{
environment.pathsToLink = [
"/share/backgrounds"
"/share/eww"
"/share/thumbnailers"
];
environment.systemPackages = with pkgs; [
(callPackage ./fluent-icons.nix { })
(callPackage ./osu-backgrounds.nix { })
(callPackage ./pnpm-shell-completion.nix { })
(callPackage ./webp-thumbnailer.nix { })
];
}