nixos-config/modules/ausweisapp.nix

13 lines
254 B
Nix

# SPDX-FileCopyrightText: 2022 Simon Bruder <simon@sbruder.de>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
{ config, lib, pkgs, ... }:
lib.mkIf config.sbruder.gui.enable {
programs.ausweisapp = {
enable = true;
openFirewall = true;
};
}