nixos/home/desktop/eww.nix

13 lines
177 B
Nix

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