nicks-nix-config/modules/ewwbar.nix

21 lines
217 B
Nix
Raw Normal View History

2023-10-24 18:31:26 -07:00
{pkgs, ...}:
let
in
{
home.packages = with pkgs; [
playerctl
alsa-utils
socat
jq
];
programs.eww = {
enable = true;
package = pkgs.eww-wayland;
configDir = ./eww-config;
};
}