I do Android development - the tools for it aren't in packetmix (see https://github.com/CollaboraOnline/nix-build-support) but we still need to persist the data here...
···55{ pkgs, ... }:
66{
77 # Miscellaneous package installs that aren't really big enough to get their own folder
88- # Don't place any config that isn't directly adding lines to home.packages here...
88+ # Don't place any config that isn't directly adding lines to home.packages or clicks.storage.impermanence.persist.directories here...
99 home.packages = [
1010 pkgs.obs-studio
1111 pkgs.unzip
+10-1
packetmix/homes/redhead/misc.nix
···55{ pkgs, ... }:
66{
77 # Miscellaneous package installs that aren't really big enough to get their own folder
88- # Don't place any config that isn't directly adding lines to home.packages here...
88+ # Don't place any config that isn't directly adding lines to home.packages or clicks.storage.impermanence.persist.directories here...
99 home.packages = [
1010 pkgs.brightnessctl
1111+ ];
1212+1313+ clicks.storage.impermanence.persist.directories = [
1414+ # used for some ephemeral android shells...
1515+ ".android"
1616+ ".cache/Google"
1717+ ".config/Google"
1818+ ".gradle"
1919+ ".local/share/Google"
1120 ];
1221}