From 571d56afe69d167e4406b249ccadd7f0f527d52c Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Sun, 3 Nov 2024 20:09:06 -0600 Subject: fix bugs --- modules/home/initial-home-setup.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'modules/home/initial-home-setup.nix') diff --git a/modules/home/initial-home-setup.nix b/modules/home/initial-home-setup.nix index a7119b9..2348b79 100644 --- a/modules/home/initial-home-setup.nix +++ b/modules/home/initial-home-setup.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: { +{ config, lib, pkgs, userDetails, ... }: { home.activation = { cloneRepos = lib.hm.dag.entryAfter ["writeBoundary"] '' export PATH="${config.home.path}/bin:$PATH" @@ -14,5 +14,8 @@ export PATH="$HOME/.local/bin/misc:$PATH" run mimewiz # already verbose ''; + createDirs = lib.hm.dag.entryAfter ["writeBoundary"] '' + run mkdir -p $VERBOSE_ARG "${userDetails.home.downloads}" + ''; }; } -- cgit v1.2.3