diff --git a/home/ooks/features/wayland/essentials/default.nix b/home/ooks/features/wayland/essentials/default.nix index 2b57877..9867f8d 100644 --- a/home/ooks/features/wayland/essentials/default.nix +++ b/home/ooks/features/wayland/essentials/default.nix @@ -9,6 +9,7 @@ ./cursor.nix ./gimp.nix ./swaylock.nix + ./eww ]; xdg.mimeApps.enable = true; diff --git a/home/ooks/features/wayland/essentials/eww/config/eww/eww-variables.yuck b/home/ooks/features/wayland/essentials/eww/config/eww-variables.yuck similarity index 100% rename from home/ooks/features/wayland/essentials/eww/config/eww/eww-variables.yuck rename to home/ooks/features/wayland/essentials/eww/config/eww-variables.yuck diff --git a/home/ooks/features/wayland/essentials/eww/config/eww/eww-widgets.yuck b/home/ooks/features/wayland/essentials/eww/config/eww-widgets.yuck similarity index 100% rename from home/ooks/features/wayland/essentials/eww/config/eww/eww-widgets.yuck rename to home/ooks/features/wayland/essentials/eww/config/eww-widgets.yuck diff --git a/home/ooks/features/wayland/essentials/eww/config/eww/eww-windows.yuck b/home/ooks/features/wayland/essentials/eww/config/eww-windows.yuck similarity index 100% rename from home/ooks/features/wayland/essentials/eww/config/eww/eww-windows.yuck rename to home/ooks/features/wayland/essentials/eww/config/eww-windows.yuck diff --git a/home/ooks/features/wayland/essentials/eww/config/eww/eww.scss b/home/ooks/features/wayland/essentials/eww/config/eww.scss similarity index 100% rename from home/ooks/features/wayland/essentials/eww/config/eww/eww.scss rename to home/ooks/features/wayland/essentials/eww/config/eww.scss diff --git a/home/ooks/features/wayland/essentials/eww/config/eww/eww.yuck b/home/ooks/features/wayland/essentials/eww/config/eww.yuck similarity index 100% rename from home/ooks/features/wayland/essentials/eww/config/eww/eww.yuck rename to home/ooks/features/wayland/essentials/eww/config/eww.yuck diff --git a/home/ooks/features/wayland/essentials/eww/config/eww/scripts/bat.sh b/home/ooks/features/wayland/essentials/eww/config/scripts/bat.sh similarity index 100% rename from home/ooks/features/wayland/essentials/eww/config/eww/scripts/bat.sh rename to home/ooks/features/wayland/essentials/eww/config/scripts/bat.sh diff --git a/home/ooks/features/wayland/essentials/eww/config/eww/scripts/battery.sh b/home/ooks/features/wayland/essentials/eww/config/scripts/battery.sh similarity index 100% rename from home/ooks/features/wayland/essentials/eww/config/eww/scripts/battery.sh rename to home/ooks/features/wayland/essentials/eww/config/scripts/battery.sh diff --git a/home/ooks/features/wayland/essentials/eww/config/eww/scripts/batterytest.sh b/home/ooks/features/wayland/essentials/eww/config/scripts/batterytest.sh similarity index 100% rename from home/ooks/features/wayland/essentials/eww/config/eww/scripts/batterytest.sh rename to home/ooks/features/wayland/essentials/eww/config/scripts/batterytest.sh diff --git a/home/ooks/features/wayland/essentials/eww/config/eww/scripts/earbuds.sh b/home/ooks/features/wayland/essentials/eww/config/scripts/earbuds.sh similarity index 100% rename from home/ooks/features/wayland/essentials/eww/config/eww/scripts/earbuds.sh rename to home/ooks/features/wayland/essentials/eww/config/scripts/earbuds.sh diff --git a/home/ooks/features/wayland/essentials/eww/default.nix b/home/ooks/features/wayland/essentials/eww/default.nix index a4cc952..815b6eb 100644 --- a/home/ooks/features/wayland/essentials/eww/default.nix +++ b/home/ooks/features/wayland/essentials/eww/default.nix @@ -1,9 +1,8 @@ { config, pkgs, lib, ... }: { - home.packages = with pkgs; [ eww-wayland ]; - - - - - + programs.eww = { + enable = true; + package = pkgs.eww-wayland; + configDir = ./config; + }; }