Files
dotfiles/home/services/eww.nix
2025-07-25 15:42:16 +05:30

20 lines
386 B
Nix

{
pkgs,
device,
lib,
...
}: let
activate_linux = pkgs.fetchFromGitHub {
owner = "Nycta-b424b3c7";
repo = "eww_activate-linux";
rev = "master";
sha256 = "sha256-CHNkRYR4F9JGMrNubHu+XzkwwI3IHzh93nuS7/Plhe4=";
};
in {
programs.eww = {
enable = device.hasGui && pkgs.stdenv.isLinux;
enableFishIntegration = true;
configDir = activate_linux;
};
}