dotfiles/eww/default.nix

16 lines
147 B
Nix

{ inputs
, lib
, config
, pkgs
, ...
}:
{
programs.eww = {
enable = true;
package = pkgs.eww-wayland;
configDir = ./config;
};
}