From dbb14af6c8349bcfc8d133c2baa37b0e488ad4ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miskolczi=20Rich=C3=A1rd?= Date: Wed, 8 Apr 2026 16:52:16 +0200 Subject: [PATCH] Refactoring --- home.nix | 2 +- hyprland/hypr/hyprland.nix | 11 ----------- modules/hyprland.nix | 11 +++++++++++ 3 files changed, 12 insertions(+), 12 deletions(-) delete mode 100644 hyprland/hypr/hyprland.nix create mode 100644 modules/hyprland.nix diff --git a/home.nix b/home.nix index b8258dc..8acf35d 100644 --- a/home.nix +++ b/home.nix @@ -2,7 +2,7 @@ { imports = [ - ./hyprland/hypr/hyprland.nix + ./modules/hyprland.nix ]; home = { username = "typo"; diff --git a/hyprland/hypr/hyprland.nix b/hyprland/hypr/hyprland.nix deleted file mode 100644 index 0adf538..0000000 --- a/hyprland/hypr/hyprland.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ - imports = [ - ./hypridle.nix - ./hyprlock.nix - ../raw/fuzzel.nix - ../raw/kitty.nix - ../scripts/powermenu.nix - ../scripts/screenshot.nix - ../scripts/themeswitch.nix - ]; -} diff --git a/modules/hyprland.nix b/modules/hyprland.nix new file mode 100644 index 0000000..84ce65b --- /dev/null +++ b/modules/hyprland.nix @@ -0,0 +1,11 @@ +{ + imports = [ + ../hyprland/hypr/hypridle.nix + ../hyprland/hypr/hyprlock.nix + ../hyprland/raw/fuzzel.nix + ../hyprland/raw/kitty.nix + ../hyprland/scripts/powermenu.nix + ../hyprland/scripts/screenshot.nix + ../hyprland/scripts/themeswitch.nix + ]; +}