Regenerated

This commit is contained in:
2026-03-25 18:09:47 +00:00
parent 96f5001448
commit fd72ce6154
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -1108,9 +1108,10 @@ in
# Activation to ensure the directory is writable before symlinks # Activation to ensure the directory is writable before symlinks
home.activation.fixStylixPermissions = lib.hm.dag.entryAfter ["writeBoundary"] '' home.activation.fixStylixPermissions = lib.hm.dag.entryAfter ["writeBoundary"] ''
mkdir -p $HOME/.config mkdir -p $HOME/.config
chmod u+rwx $HOME/.config chmod -R u+rwx $HOME/.config
''; '';
}; };
}; };
};
} }
#+END_SRC #+END_SRC
+2 -1
View File
@@ -33,8 +33,9 @@ in
# Activation to ensure the directory is writable before symlinks # Activation to ensure the directory is writable before symlinks
home.activation.fixStylixPermissions = lib.hm.dag.entryAfter ["writeBoundary"] '' home.activation.fixStylixPermissions = lib.hm.dag.entryAfter ["writeBoundary"] ''
mkdir -p $HOME/.config mkdir -p $HOME/.config
chmod u+rwx $HOME/.config chmod -R u+rwx $HOME/.config
''; '';
}; };
}; };
};
} }