nicks-nix-config/modules/ewwbar/default.nix
2023-11-06 17:01:22 -08:00

22 lines
240 B
Nix

{pkgs, ...}:
let
in
{
home.packages = with pkgs; [
alsa-utils
gcal
jq
playerctl
pw-volume
socat
];
programs.eww = {
enable = true;
package = pkgs.eww-wayland;
configDir = ./eww-config;
};
}