blob: 9567ddbda02759ce7dcf43a63676bec3e2ba2b7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ config, lib, ... }:
let cfg = config.my.profiles.trusted;
in {
options.my.profiles.trusted = with lib; {
enable = mkEnableOption "trusted profile";
};
config = lib.mkIf cfg.enable {
my.home.gpg = {
enable = true;
pinentry = "gnome3";
defaultKey = "23348B57F01D4234B5CFBA0923208AC01EB6EEA1";
};
my.home.mail.enable = true;
my.home.pass.enable = true;
};
}
|