mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-10 07:58:30 +01:00
00a246c9c6
I've been using this for a few days now and Aleo is my new favorite serif font.
19 lines
411 B
Nix
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 { })
|
|
];
|
|
}
|