f489259af9
- 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
14 lines
242 B
Nix
14 lines
242 B
Nix
{ config, lib, ... }: {
|
|
imports = [
|
|
./overlay.nix
|
|
./cisco.nix
|
|
./himmelblau.nix
|
|
./mdatp.nix
|
|
];
|
|
|
|
# Create the work directory for the user
|
|
systemd.tmpfiles.rules = [
|
|
"d /home/someone/work 0755 someone users -"
|
|
];
|
|
}
|