15 lines
115 B
Nix
15 lines
115 B
Nix
|
{ inputs
|
||
|
, lib
|
||
|
, config
|
||
|
, pkgs
|
||
|
, ...
|
||
|
}:
|
||
|
|
||
|
{
|
||
|
programs.eww = {
|
||
|
enable = true;
|
||
|
|
||
|
configDir = ./config;
|
||
|
};
|
||
|
}
|