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