diff --git a/home/default.nix b/home/default.nix index 156c9b2..d85c031 100644 --- a/home/default.nix +++ b/home/default.nix @@ -8,10 +8,7 @@ ./kitty.nix ./zoxide.nix ] ++ (if currentSystemDe == "hyprland" then [ - ./hyprland.nix - ./wofi.nix - ./hyprlock.nix - ./waybar.nix + ./hyprland ] else [] ); diff --git a/home/hyprland/default.nix b/home/hyprland/default.nix new file mode 100644 index 0000000..0410d3a --- /dev/null +++ b/home/hyprland/default.nix @@ -0,0 +1,9 @@ +{ ... }: +{ + imports = [ + ./hyprland.nix + ./hyprlock.nix + ./waybar.nix + ./wofi.nix + ]; +} diff --git a/home/hyprland.nix b/home/hyprland/hyprland.nix similarity index 100% rename from home/hyprland.nix rename to home/hyprland/hyprland.nix diff --git a/home/hyprlock.nix b/home/hyprland/hyprlock.nix similarity index 100% rename from home/hyprlock.nix rename to home/hyprland/hyprlock.nix diff --git a/home/waybar.nix b/home/hyprland/waybar.nix similarity index 100% rename from home/waybar.nix rename to home/hyprland/waybar.nix diff --git a/home/wofi.nix b/home/hyprland/wofi.nix similarity index 100% rename from home/wofi.nix rename to home/hyprland/wofi.nix