10 lines
134 B
Nix
10 lines
134 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.eww = {
|
||
|
enable = true;
|
||
|
package = pkgs.eww-wayland;
|
||
|
configDir = ./config;
|
||
|
};
|
||
|
}
|