nixos/home/desktop/eww/default.nix

12 lines
171 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
jq
socat
];
programs.eww = {
enable = true;
package = pkgs.eww-wayland;
configDir = ./config;
};
}