mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 09:24:17 +01:00
7b7d967250
Note that I may experiment with lutgen to make folder icons that match the color scheme.
17 lines
353 B
Nix
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 { })
|
|
];
|
|
}
|