mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 12:09:41 +00:00
12 lines
256 B
Nix
12 lines
256 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: let
|
|
packages = {
|
|
hyprland-swap-workspace = pkgs.callPackage ./hyprland-swap-workspace {};
|
|
hyprland-move-window = pkgs.callPackage ./hyprland-move-window {};
|
|
brightness = pkgs.callPackage ./brightness {};
|
|
};
|
|
in
|
|
packages
|