From 11859c0057f1725928c216e33fddd085cbd22f50 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Sun, 15 Mar 2026 12:11:51 +0000 Subject: [PATCH] finding hyprland.conf error --- Droidnix/generated/hyprland/hyprland.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Droidnix/generated/hyprland/hyprland.nix b/Droidnix/generated/hyprland/hyprland.nix index fdf1b5d31..d919ee95c 100644 --- a/Droidnix/generated/hyprland/hyprland.nix +++ b/Droidnix/generated/hyprland/hyprland.nix @@ -39,10 +39,13 @@ in } // hyprlandConfs; - # Use a postBuild hook to copy files - postBuild = '' - mkdir -p ~/.config/hypr/ - cp ${flakeRoot}/assets/hyprland/conf/hypr/* ~/.config/hypr/ - ''; + # Use home-files to copy files + home-files = [ + { + path = "hypr"; + source = "${flakeRoot}/assets/hyprland/conf/hypr"; + recursive = true; + } + ]; }; }