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

View File

@@ -11,6 +11,7 @@ in {
./anyrun.nix
./ironbar
./gui.nix
./eww.nix
];
services.kdeconnect.enable = linux_gui;

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;
};
}