mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
16 lines
301 B
Nix
16 lines
301 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
|
|
let cfg = config.modules.system.nipr;
|
|
in {
|
|
options.modules.system.nipr.enable = lib.mkEnableOption "nipr";
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
opensc
|
|
pcsc-tools
|
|
pkcs11helper
|
|
firefox
|
|
];
|
|
};
|
|
}
|