20 lines
655 B
Nix
20 lines
655 B
Nix
|
# SPDX-FileCopyrightText: 2024 Simon Bruder <simon@sbruder.de>
|
||
|
#
|
||
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
#
|
||
|
# Flatpak is only used for programs that are not easily installable natively.
|
||
|
# They should always be confined as much as possible using Flatseal.
|
||
|
#
|
||
|
# To make Flatpak work with Flathub,
|
||
|
# the following command must be run imperatively:
|
||
|
#
|
||
|
# flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
||
|
#
|
||
|
# The full guide is available on https://flathub.org/setup/NixOS,
|
||
|
# though the restart step is not necessary.
|
||
|
{ config, lib, ... }:
|
||
|
|
||
|
lib.mkIf config.sbruder.gui.enable {
|
||
|
services.flatpak.enable = true;
|
||
|
}
|