infrastructure/home/wayland/eww/default.nix
Laureηt bd71229ba9
🚚 (home/wayland) move eww's config in its own folder
(this way `default.nix` won't be copied inside the configDir)
2023-12-30 18:41:19 +01:00

8 lines
118 B
Nix

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