mirror of
https://github.com/ItsDrike/nixdots
synced 2025-02-25 03:49:02 +00:00
11 lines
248 B
Nix
11 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
|