nix-files/hosts/common/programs/gnome-weather.nix

11 lines
235 B
Nix

# preferences are saved via dconf; see `dconf dump /`
# cache dir is just for weather data (or maybe a http cache)
{ ... }:
{
sane.programs.gnome-weather = {
persist.byStore.plaintext = [
".cache/libgweather"
];
};
}