feat: Add fingerprint scanner support and modularize work configurations
CI / Flake check (aarch64-linux) (push) Failing after 20m53s
CI / Flake check (x86_64-linux) (push) Failing after 3m20s
CI / Pre-commit checks (x86_64-linux) (push) Failing after 2m44s

- Add fingerprint.nix hardware module with TOD driver support
- Create separate laptop-work configuration with Cisco, Himmelblau, and MDATP work modules
- Move work-specific modules from shared to laptop-work profile
- Change work module enable defaults to false for better security-by-default
- Add MDATP support with enhanced modular structure
This commit is contained in:
2026-07-19 10:21:03 +02:00
parent 0893f80600
commit f489259af9
7 changed files with 84 additions and 9 deletions
+22
View File
@@ -0,0 +1,22 @@
{ config, lib, pkgs, inputs, ... }:
# Microsoft Defender for Endpoint
#
# References:
# - https://github.com/epetousis/nix-mdatp
let
cfg = config.work.mdatp;
in {
imports = [
inputs.mdatp.nixosModules.mdatp
];
options.work.mdatp = {
enable = lib.mkEnableOption "Microsoft Defender for Endpoint";
};
config = lib.mkIf cfg.enable {
services.mdatp.enable = true;
};
}