9 lines
129 B
Nix
9 lines
129 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.eww = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
configDir = ./config;
|
|
};
|
|
}
|