snowflake/home/programs/eww/default.nix
2024-05-13 16:18:49 -04:00

13 lines
185 B
Nix

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