1
0

hosts/carbon: Add scan-to-gpg

This commit is contained in:
2024-11-24 20:43:27 +01:00
parent 6dc38cf21e
commit a76e8cf3c0
7 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
services.scan-to-gpg = {
enable = true;
gpgkey = "${pkgs.clerie-keys}/gpg/clerie@clerie.de.asc";
};
users.users."clerie".extraGroups = [ "scan-to-gpg" ];
}