···66 persistRoot = "/nix/persist"; # Anything important we want backed up
77 secureRoot = "${persistRoot}/secure"; # Files and directories we want only root to access
88 cacheRoot = "/nix/perist-cache"; # Anything not as important that we can stand losing
99- preWith = pre: paths: builtins.map (p: "${pre}/${p}") paths;
99+ preWith = pre: builtins.map (p: "${pre}/${p}");
1010 preShare = preWith ".local/share";
1111 preConf = preWith ".config";
1212in {