summary refs log tree commit diff
path: root/nixos/modules/services/desktops/flatpak.xml
blob: 8f080b2502286eba7b3ee59b391e8c0a223e5d56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<chapter xmlns="http://docbook.org/ns/docbook"
         xmlns:xlink="http://www.w3.org/1999/xlink"
         xmlns:xi="http://www.w3.org/2001/XInclude"
         version="5.0"
         xml:id="module-services-flatpak">
 <title>Flatpak</title>
 <para>
  <emphasis>Source:</emphasis>
  <filename>modules/services/desktop/flatpak.nix</filename>
 </para>
 <para>
  <emphasis>Upstream documentation:</emphasis>
  <link xlink:href="https://github.com/flatpak/flatpak/wiki"/>
 </para>
 <para>
  Flatpak is a system for building, distributing, and running sandboxed desktop
  applications on Linux.
 </para>
 <para>
  To enable Flatpak, add the following to your
  <filename>configuration.nix</filename>:
<programlisting>
  <xref linkend="opt-services.flatpak.enable"/> = true;
</programlisting>
 </para>
 <para>
  For the sandboxed apps to work correctly, desktop integration portals need to
  be installed. If you run GNOME, this will be handled automatically for you;
  in other cases, you will need to add something like the following to your
  <filename>configuration.nix</filename>:
<programlisting>
  <xref linkend="opt-xdg.portal.extraPortals"/> = [ pkgs.xdg-desktop-portal-gtk ];
</programlisting>
 </para>
 <para>
  Then, you will need to add a repository, for example,
  <link xlink:href="https://github.com/flatpak/flatpak/wiki">Flathub</link>,
  either using the following commands:
<screen>
<prompt>$ </prompt>flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
<prompt>$ </prompt>flatpak update
</screen>
  or by opening the
  <link xlink:href="https://flathub.org/repo/flathub.flatpakrepo">repository
  file</link> in GNOME Software.
 </para>
 <para>
  Finally, you can search and install programs:
<screen>
<prompt>$ </prompt>flatpak search bustle
<prompt>$ </prompt>flatpak install flathub org.freedesktop.Bustle
<prompt>$ </prompt>flatpak run org.freedesktop.Bustle
</screen>
  Again, GNOME Software offers graphical interface for these tasks.
 </para>
</chapter>