nix-config/packages/default.nix

18 lines
361 B
Nix
Raw Normal View History

2023-08-07 14:36:40 +02:00
{ pkgs, ... }:
{
environment.pathsToLink = [
"/share/backgrounds"
"/share/eww"
"/share/thumbnailers"
"/share/fonts"
2023-08-07 14:36:40 +02:00
];
2023-10-28 17:35:05 +02:00
environment.systemPackages = with pkgs; [
(callPackage ./aleo-fonts.nix { })
(callPackage ./fluent-icons.nix { })
2023-10-28 17:35:05 +02:00
(callPackage ./osu-backgrounds.nix { })
(callPackage ./webp-thumbnailer.nix { })
2023-08-07 14:36:40 +02:00
];
}