From 914e37f812b696fadd0d66da080c139ba51ca1a3 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Sun, 15 Mar 2026 12:24:08 +0000 Subject: [PATCH] finding hyprland.conf error --- Droidnix/generated/hyprland/hyprland.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Droidnix/generated/hyprland/hyprland.nix b/Droidnix/generated/hyprland/hyprland.nix index 8bde8d59b..5e1ca709d 100644 --- a/Droidnix/generated/hyprland/hyprland.nix +++ b/Droidnix/generated/hyprland/hyprland.nix @@ -35,10 +35,10 @@ in }; }; - # Add activation script to create symlinks - system.activationScripts.hyprlandLinks = '' - mkdir -p ~/.config/hypr/ - ln -sf ${flakeRoot}/assets/hyprland/conf/hypr/* ~/.config/hypr/ - ''; + # Use home.file to create explicit symlinks for each file + home.file = lib.genAttrs files (name: { + target = "${flakeRoot}/assets/hyprland/conf/hypr/${name}"; + path = "/.config/hypr/${name}"; + }); }; }