12 lines
176 B
Nix
12 lines
176 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
eww-wayland
|
|
playerctl
|
|
imagemagick
|
|
];
|
|
|
|
programs.eww = {
|
|
enable = false;
|
|
package = pkgs.eww-wayland;
|
|
};
|
|
}
|