nicks-nix-config/modules/ewwbar/default.nix

22 lines
241 B
Nix

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