Your one-stop-cake-shop for everything Freshly Baked has to offer

feat(minion): enable flatpak

I have some apps that I want to install via flatpak, so let's get and
persist flatpak :)

Changed files
+21
packetmix
homes
minion
systems
minion
+10
packetmix/homes/minion/flatpak.nix
··· 1 + # SPDX-FileCopyrightText: 2025 Freshly Baked Cake 2 + # 3 + # SPDX-License-Identifier: MIT 4 + 5 + { 6 + clicks.storage.impermanence.persist.directories = [ 7 + ".var/app" 8 + ".local/share/flatpak" 9 + ]; 10 + }
+11
packetmix/systems/minion/flatpak.nix
··· 1 + # SPDX-FileCopyrightText: 2025 Freshly Baked Cake 2 + # 3 + # SPDX-License-Identifier: MIT 4 + 5 + { 6 + services.flatpak.enable = true; 7 + 8 + clicks.storage.impermanence.persist.directories = [ 9 + "/var/lib/flatpak" 10 + ]; 11 + }