https://github.com/ddlees/drata.flake
A Nix flake for Drata Agent
https://github.com/ddlees/drata.flake
Last synced: about 1 year ago
JSON representation
A Nix flake for Drata Agent
- Host: GitHub
- URL: https://github.com/ddlees/drata.flake
- Owner: ddlees
- License: mit
- Created: 2025-02-26T18:09:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-26T18:22:13.000Z (over 1 year ago)
- Last Synced: 2025-03-28T06:06:47.016Z (about 1 year ago)
- Language: Nix
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Drata Agent
The Drata Agent is a lightweight application that lives in your computer's toolbar. This application is granted READ ONLY access to your system preferences to help ensure proper security configurations are set - such as screensaver locking, password manager, antivirus software and automatic updates are enabled. These security configurations are required for SOC 2 compliance.
# NixOS Flakes Installation
`flake.nix`
``` nix
{
inputs = {
drata.url = "github:ddlees/drata.flake";
};
}
```
`configuration.nix`
``` nix
environment.systemPackages = with pkgs; [
inputs.drata.packages.${system}.drata
];
```