nix-config/packages/default.nix
Donovan Glover 6e23ae9c4c
chore: Update to latest nixos-unstable release
- 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
2024-03-17 00:20:04 -04:00

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 { })
];
}