tirith: add module

Adds Home Manager module for Tirith, a shell security monitor.

The module supports:
- Shell integration for Bash, Fish, and Zsh
- Allowlist configuration for bypassing Tirith analysis
- Policy configuration for customizing security behavior
This commit is contained in:
Malik 2026-02-13 12:15:24 +01:00 committed by Austin Horstman
parent de4cfffc98
commit 5e90b62996
4 changed files with 125 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ ... }:
{
programs.tirith = {
enable = true;
allowlist = [
"localhost"
"example.com"
];
policy = {
version = 1;
fail_mode = "open";
};
};
nmt.script = ''
assertFileExists home-files/.config/tirith/allowlist
assertFileContent \
home-files/.config/tirith/allowlist \
${builtins.toFile "expected" ''
localhost
example.com
''}
assertFileExists home-files/.config/tirith/policy.yaml
'';
}