mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 01:33:17 +01:00
6e23ae9c4c
- Removed old hyprlang/hyprlock overlays that are now in nixos-unstable - Replaced pnpm-shell-completion with the one upstream - Changed old GPG option to new one
18 lines
361 B
Nix
18 lines
361 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.pathsToLink = [
|
|
"/share/backgrounds"
|
|
"/share/eww"
|
|
"/share/thumbnailers"
|
|
"/share/fonts"
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
(callPackage ./aleo-fonts.nix { })
|
|
(callPackage ./fluent-icons.nix { })
|
|
(callPackage ./osu-backgrounds.nix { })
|
|
(callPackage ./webp-thumbnailer.nix { })
|
|
];
|
|
}
|