nix-files/hosts/common/programs/fractal.nix

11 lines
251 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
sane.programs.fractal = {
# package = pkgs.fractal-latest;
package = pkgs.fractal-next;
# XXX by default fractal stores its state in ~/.local/share/stable/<UUID>.
persist.private = [ ".local/share/stable" ];
};
}