From d48600c735a364f32b6cee047877a87a06139ddb Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Mon, 9 Feb 2026 14:06:55 -0500 Subject: [PATCH] cleanup --- home/home.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/home/home.nix b/home/home.nix index 55bc372..562a127 100644 --- a/home/home.nix +++ b/home/home.nix @@ -31,10 +31,8 @@ in targets.genericLinux.enable = !isNixOS; news.display = "silent"; - home.activation.linkScripts = lib.hm.dag.entryAfter [ "writeBoundary" ] '' - $DRY_RUN_CMD mkdir -p "${config.home.homeDirectory}/.local/bin" - $DRY_RUN_CMD ln -sfn "${config.home.homeDirectory}/nix-config/scripts" "${config.home.homeDirectory}/.local/bin/scripts" - ''; + home.file.".local/bin/scripts".source = + config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nix-config/scripts"; programs.home-manager.enable = true;