From b4664210c781656c2c694db66c4f17f54fc45e9e Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Wed, 20 Dec 2023 23:08:05 +0100 Subject: [PATCH] add ausweisapp --- hosts/yodaTux/configuration.nix | 1 + modules/ausweisapp.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 modules/ausweisapp.nix diff --git a/hosts/yodaTux/configuration.nix b/hosts/yodaTux/configuration.nix index eea5d7a..f4f6d9c 100644 --- a/hosts/yodaTux/configuration.nix +++ b/hosts/yodaTux/configuration.nix @@ -26,6 +26,7 @@ ../../modules/programs.nix ../../modules/spaceFM.nix + ../../modules/ausweisapp.nix ../../modules/nextcloud-integration.nix ../../modules/syncthing.nix ../../modules/signal-desktop.nix diff --git a/modules/ausweisapp.nix b/modules/ausweisapp.nix new file mode 100644 index 0000000..f88dee5 --- /dev/null +++ b/modules/ausweisapp.nix @@ -0,0 +1,7 @@ +{ config, pkgs, ... }: +{ + # Enable AusweisApp. + programs.ausweisapp.enable = true; + # Open firewall ports for the Smartphone as Card Reader (SaC). + programs.ausweisapp.openFirewall = true; +}