forked from extern/nix-config
16 lines
302 B
Nix
16 lines
302 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.pathsToLink = [
|
|
"/share/backgrounds"
|
|
"/share/eww"
|
|
"/share/thumbnailers"
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
(callPackage ./osu-backgrounds.nix { })
|
|
(callPackage ./candy-icons.nix { })
|
|
(callPackage ./webp-thumbnailer.nix { })
|
|
];
|
|
}
|