Malte Tammena
9bada411db
To prepare for an addiotional /users/modules which can be shared between users.
17 lines
315 B
Nix
17 lines
315 B
Nix
{ pkgs, ... }:
|
|
|
|
let conf = import ./conf.nix;
|
|
in {
|
|
home.packages = with pkgs; [ yubikey-personalization ];
|
|
|
|
programs.gpg = { enable = true; };
|
|
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
enableScDaemon = true;
|
|
enableSshSupport = true;
|
|
sshKeys = [ conf.gpg.grip ];
|
|
pinentryFlavor = "qt";
|
|
};
|
|
}
|