snowflake/home/programs/eww/default.nix

13 lines
168 B
Nix
Raw Normal View History

{pkgs, ...}: {
home.packages = with pkgs; [
2024-05-02 01:02:49 -04:00
eww
playerctl
imagemagick
];
programs.eww = {
enable = false;
package = pkgs.eww-wayland;
};
}