snowflake/home/programs/eww/default.nix
notohh f5034dca81
All checks were successful
ci/woodpecker/cron/flake-lock-update Pipeline was successful
eww: enable
2024-05-13 16:18:49 -04:00

14 lines
185 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
eww
playerctl
imagemagick
];
programs.eww = {
enable = true;
package = pkgs.eww;
configDir = ./config;
};
}