1
0
Fork 0
nixos-config/home-manager/roles/state.nix
2022-01-05 20:07:21 +01:00

60 lines
1.9 KiB
Nix

defaultMode: { lib, config, ... }:
let
# Persistent means that files get snapshoted and kept for a month
# Volatile means that files just lay on the disk
# Backups are organized independently on this system
home = config.home.homeDirectory;
persistentStateDirs = [
".aqbanking"
".calendars"
".config/Element"
".config/Mumble"
".config/Signal"
".config/discord"
".config/gh"
".contacts"
".gnupg"
".local/share/Mumble"
".local/share/TelegramDesktop"
".local/share/direnv"
".local/share/khal"
".local/share/mpd"
".local/share/waydroid"
".mozilla/firefox/maralorn-default"
".minecraft"
".newsboat"
".ssh"
".task"
".vdirsyncer"
".vimhist"
".zoom"
".zotero/zotero"
"Maildir"
"git"
"media"
];
persistentStateFiles = [ ".chpwd-recent-dirs" ".zsh_history" ];
volatileStateFiles = [ ];
volatileStateDirs = [ ".steam" ".local/share/Steam" ];
mkLine = type: to: from: "${type} ${to} - - - - ${from}";
mkEntry = type: persistence: name:
let
target = "/disk/${persistence}/maralorn/${name}";
in
[ (mkLine "L+" "${home}/${name}" target) (mkLine type target "") ];
in
{
systemd.user.tmpfiles.rules = lib.concatLists
(
map (mkEntry "f" "volatile") volatileStateFiles ++ map (mkEntry "d" "volatile") volatileStateDirs ++ map (mkEntry "f" "persist") persistentStateFiles ++ map (mkEntry "d" "persist") persistentStateDirs
) ++ [
(mkLine "L+" "${home}/.password-store" "git/password-store")
(mkLine "L+" "${home}/.volatile" "/disk/volatile/maralorn")
(mkLine "L+" "${home}/.config/nixpkgs/home.nix" "${home}/git/config/home.nix")
(mkLine "L+" "${home}/.persist" "/disk/persist/maralorn")
(mkLine "f" "${home}/.mode" defaultMode)
(mkLine "f" "${home}/.config/lazygit/state.yml" "startuppopupversion: 5")
(mkLine "d" "${home}/.cache/mutt" "")
];
}