feat: Added stuff

This commit is contained in:
uttarayan21
2025-06-24 00:15:13 +05:30
parent 7702946c5f
commit 80d53cc79e
9 changed files with 49 additions and 10 deletions

19
home/linux/eww.nix Normal file
View File

@@ -0,0 +1,19 @@
{
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;
};
}