This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/wayland/eww/default.nix

17 lines
266 B
Nix

{
pkgs,
inputs,
...
}: {
programs.eww = {
enable = true;
package = inputs.eww-systray.packages.${pkgs.system}.eww-wayland;
configDir = ./config;
};
home.packages = [
pkgs.eww-hyprland-activewindow
pkgs.eww-hyprland-workspaces
];
}