# SPDX-FileCopyrightText: 2025 Ethan Reece # # SPDX-License-Identifier: MIT { inputs, username, ... }: { imports = [ inputs.impermanence.homeManagerModules.impermanence ]; home.persistence."/persistent/home/${username}" = { directories = [ "Downloads" "Documents" ".gnupg" ".ssh" ".nixops" ".local/share/keyrings" ".local/share/direnv" ]; files = [ ".screenrc" ]; allowOther = true; }; }