mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-14 21:57:17 +00:00
12 lines
248 B
Nix
12 lines
248 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: let
|
|
packages = {
|
|
hyprland-move-window = pkgs.callPackage ./hyprland-move-window {};
|
|
brightness = pkgs.callPackage ./brightness {};
|
|
hyprland-screenshot = pkgs.callPackage ./hyprland-screenshot {};
|
|
};
|
|
in
|
|
packages
|