nix-config/packages/default.nix
Donovan Glover 00a246c9c6
packages: Add aleo-fonts
I've been using this for a few days now and Aleo is my new favorite
serif font.
2024-02-08 22:36:58 -05:00

19 lines
411 B
Nix

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