nixos-config/modules/ausweisapp.nix

13 lines
254 B
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2022 Simon Bruder <simon@sbruder.de>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
2022-07-24 18:06:54 +02:00
{ config, lib, pkgs, ... }:
lib.mkIf config.sbruder.gui.enable {
2022-12-10 14:50:41 +01:00
programs.ausweisapp = {
enable = true;
openFirewall = true;
};
2022-07-24 18:06:54 +02:00
}