From ca58dfcdf026008cdb55a1bc56a3978fbc2c28d7 Mon Sep 17 00:00:00 2001 From: Superredstone Date: Fri, 9 May 2025 18:39:30 +0200 Subject: [PATCH] Moved Hyprland config into a separate folder --- home/default.nix | 5 +---- home/hyprland/default.nix | 9 +++++++++ home/{ => hyprland}/hyprland.nix | 0 home/{ => hyprland}/hyprlock.nix | 0 home/{ => hyprland}/waybar.nix | 0 home/{ => hyprland}/wofi.nix | 0 6 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 home/hyprland/default.nix rename home/{ => hyprland}/hyprland.nix (100%) rename home/{ => hyprland}/hyprlock.nix (100%) rename home/{ => hyprland}/waybar.nix (100%) rename home/{ => hyprland}/wofi.nix (100%) 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