nixos-config/modules/ausweisapp.nix

9 lines
143 B
Nix
Raw Normal View History

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
}