22 lines
372 B
Nix
22 lines
372 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs.gpg = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
no-comments = false;
|
||
|
s2k-cipher-algo = "AES128";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.gnupg/gpg.conf
|
||
|
assertFileContent home-files/.gnupg/gpg.conf ${./override-defaults-expected.conf}
|
||
|
'';
|
||
|
};
|
||
|
}
|