mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 17:53:17 +01:00
220392fb85
Used for eww.
14 lines
231 B
Nix
14 lines
231 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.pathsToLink = [
|
|
"/share/backgrounds"
|
|
"/share/eww"
|
|
];
|
|
|
|
environment.systemPackages = [
|
|
(pkgs.callPackage ./osu-backgrounds.nix { })
|
|
(pkgs.callPackage ./fluent-icons.nix { })
|
|
];
|
|
}
|