mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-17 02:00:50 +01:00
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 { })
|
|
];
|
|
}
|