Fix for install

This commit is contained in:
2026-03-14 10:43:47 +00:00
parent ac5df46bc0
commit a3a1d1c730
5 changed files with 9 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
{ lib, pkgs, ... }:
{
activation = {
home.activation = {
setupDotfiles = lib.hm.dag.entryAfter ["writeBoundary"] ''
if [[ -v DRY_RUN ]]; then
echo "Dry run: Would bootstrap dotfiles from labs.scarif.space"
@@ -64,13 +64,13 @@
DEST_FILE="$HOME/.config/Nextcloud/nextcloud.cfg"
if [ ! -f "$DEST_FILE" ]; then
cp "${./initial-configs/nextcloud.cfg}" "$DEST_FILE"
cp "${../initial-configs/nextcloud.cfg}" "$DEST_FILE"
fi
DEST_FILE="$HOME/.config/sinew.in/Enpass.conf"
if [ ! -f "$DEST_FILE" ]; then
cp "${./initial-configs/Enpass.conf}" "$DEST_FILE"
cp "${../initial-configs/Enpass.conf}" "$DEST_FILE"
fi
'';
};