nix/modules/home-manager/ewwbar.nix

8 lines
115 B
Nix
Raw Normal View History

2023-11-07 17:09:05 -06:00
{pkgs, ...}: {
programs.eww = {
enable = true;
package = pkgs.eww-wayland;
configDir = ./eww;
};
}