From f81a86235dbddaee92990226693374905ace2cb9 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sat, 10 Dec 2022 14:50:41 +0100 Subject: [PATCH] ausweisapp: Use upstream module --- modules/ausweisapp.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/modules/ausweisapp.nix b/modules/ausweisapp.nix index bca9aa1..2d0aebf 100644 --- a/modules/ausweisapp.nix +++ b/modules/ausweisapp.nix @@ -1,10 +1,8 @@ { config, lib, pkgs, ... }: lib.mkIf config.sbruder.gui.enable { - environment.systemPackages = with pkgs; [ - AusweisApp2 - ]; - - # required for SaC (smartphone as cardreader) - networking.firewall.allowedUDPPorts = [ 24727 ]; + programs.ausweisapp = { + enable = true; + openFirewall = true; + }; }