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

22 lines
209 B
Nix
Raw Permalink Normal View History

2023-10-24 18:31:26 -07:00
{pkgs, ...}:
let
in
{
home.packages = with pkgs; [
2023-11-06 17:01:22 -08:00
alsa-utils
gcal
2023-11-16 16:24:23 -08:00
jaq
2023-10-24 18:31:26 -07:00
playerctl
2023-10-29 18:27:21 -07:00
pw-volume
2023-10-24 18:31:26 -07:00
socat
];
programs.eww = {
enable = true;
configDir = ./eww-config;
};
}