11 lines
233 B
Nix
11 lines
233 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
lib.mkIf config.sbruder.gui.enable {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
AusweisApp2
|
||
|
];
|
||
|
|
||
|
# required for SaC (smartphone as cardreader)
|
||
|
networking.firewall.allowedUDPPorts = [ 24727 ];
|
||
|
}
|