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
Raw Normal View History

2024-01-11 03:47:13 +00:00
{
pkgs,
inputs,
...
}: {
programs.eww = {
enable = true;
2024-03-11 17:22:04 +00:00
package = inputs.eww-systray.packages.${pkgs.system}.eww-wayland;
2024-01-11 03:47:13 +00:00
configDir = ./config;
};
home.packages = [
pkgs.eww-hyprland-activewindow
pkgs.eww-hyprland-workspaces
];
}