7 lines
103 B
Nix
7 lines
103 B
Nix
{ pkgs, ... }:
|
|
with pkgs;
|
|
{
|
|
myPkgs = {
|
|
rofi-wayland = callPackage ./rofi-wayland.nix { };
|
|
};
|
|
}
|