diff --git a/modules/hypr/clip/default.nix b/modules/hypr/clip/default.nix new file mode 100644 index 0000000..4db3f91 --- /dev/null +++ b/modules/hypr/clip/default.nix @@ -0,0 +1,9 @@ +{pkgs, ...}: { + home-manager.users.joy = { + home.packages = with pkgs; [ + wl-clipboard + ]; + + services.cliphist.enable = true; + }; +} diff --git a/modules/hypr/default.nix b/modules/hypr/default.nix index 58c9984..cc4252c 100644 --- a/modules/hypr/default.nix +++ b/modules/hypr/default.nix @@ -3,6 +3,6 @@ ./ags ./idle ./land - ./style + ./theme ]; } diff --git a/modules/hypr/land/default.nix b/modules/hypr/land/default.nix index b12a6c5..74ebe82 100644 --- a/modules/hypr/land/default.nix +++ b/modules/hypr/land/default.nix @@ -1,23 +1,8 @@ -{pkgs, ...}: { +{...}: { programs.hyprland = { enable = true; }; home-manager.users.joy = { - home.packages = with pkgs; [ - rofi-wayland - pwvucontrol - swww - wl-clipboard - cliphist - grim - slurp - hyprpicker - swappy - playerctl - ]; - - services.cliphist.enable = true; - wayland.windowManager.hyprland = { enable = true; settings = { diff --git a/modules/hypr/misc/default.nix b/modules/hypr/misc/default.nix new file mode 100644 index 0000000..406e818 --- /dev/null +++ b/modules/hypr/misc/default.nix @@ -0,0 +1,12 @@ +{pkgs,...}: { + home-manager.users.joy = { + home.packages = with pkgs; [ + pwvucontrol + grim + slurp + hyprpicker + swappy + playerctl + ]; + }; +} diff --git a/modules/hypr/style/default.nix b/modules/hypr/theme/default.nix similarity index 100% rename from modules/hypr/style/default.nix rename to modules/hypr/theme/default.nix diff --git a/modules/hypr/style/gtk/default.nix b/modules/hypr/theme/gtk/default.nix similarity index 100% rename from modules/hypr/style/gtk/default.nix rename to modules/hypr/theme/gtk/default.nix diff --git a/modules/hypr/style/gtk/gruvbox-plus.nix b/modules/hypr/theme/gtk/gruvbox-plus.nix similarity index 100% rename from modules/hypr/style/gtk/gruvbox-plus.nix rename to modules/hypr/theme/gtk/gruvbox-plus.nix diff --git a/modules/hypr/style/qt/default.nix b/modules/hypr/theme/qt/default.nix similarity index 100% rename from modules/hypr/style/qt/default.nix rename to modules/hypr/theme/qt/default.nix diff --git a/modules/hypr/style/stylix/default.nix b/modules/hypr/theme/stylix/default.nix similarity index 100% rename from modules/hypr/style/stylix/default.nix rename to modules/hypr/theme/stylix/default.nix diff --git a/modules/hypr/style/stylix/wallpaper.png b/modules/hypr/theme/stylix/wallpaper.png similarity index 100% rename from modules/hypr/style/stylix/wallpaper.png rename to modules/hypr/theme/stylix/wallpaper.png