The is an incompatibility between Firefox unstable and amdgpu stable that prevents webgl to work.
19 lines
373 B
Nix
19 lines
373 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
with lib.my;
|
|
|
|
let cfg = config.modules.services.belgian-eid;
|
|
in {
|
|
options.modules.services.belgian-eid = { enable = mkBoolOpt false; };
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.pcscd.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
(firefox.override { pkcs11Modules = [ eid-mw ]; })
|
|
eid-mw
|
|
];
|
|
};
|
|
}
|