add flatpak support - closes #2

This commit is contained in:
cswimr 2024-11-25 14:19:57 -05:00
parent bc4b9f49d6
commit d82fe7048a
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
3 changed files with 27 additions and 0 deletions

8
nixos/flatpak.nix Normal file
View file

@ -0,0 +1,8 @@
{
services.flatpak = {
enable = true;
packages = [
{ flatpakref = "https://sober.vinegarhq.org/sober.flatpakref"; sha256 = "1pj8y1xhiwgbnhrr3yr3ybpfis9slrl73i0b1lc9q89vhip6ym2l"; }
];
};
}