snowflake/home/programs/eww/default.nix

14 lines
185 B
Nix
Raw Normal View History

{pkgs, ...}: {
home.packages = with pkgs; [
2024-05-02 01:02:49 -04:00
eww
playerctl
imagemagick
];
programs.eww = {
2024-05-13 16:18:49 -04:00
enable = true;
package = pkgs.eww;
configDir = ./config;
};
}