From 0ed9e8ecab6589114deff637823cc173562eb27f Mon Sep 17 00:00:00 2001 From: ringofstorms Date: Mon, 1 Apr 2024 18:50:57 -0500 Subject: [PATCH] maybe missing paths --- users/josh/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/users/josh/configuration.nix b/users/josh/configuration.nix index dd31743..6b41ecc 100644 --- a/users/josh/configuration.nix +++ b/users/josh/configuration.nix @@ -19,12 +19,12 @@ [ (settings.usersDir + "/_common/home.nix") ] # Programs ++ ylib.umport { - paths = [ ./programs ]; + path = ./programs; recursive = true; } # Programs by host ++ ylib.umport { - paths = [ ./by_hosts/${settings.system.hostname} ]; + path = lib.fileset.maybeMissing ./by_hosts/${settings.system.hostname}; recursive = true; }; };