blob: 97b3f033a96fea0b1988a4d48a49aaf221e99777 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
## Personal utils for daily use machines like laptop, cell phone
## This should not be used on a server
{ pkgs, ... }:
{
programs.gnupg = {
agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "gnome3";
};
};
environment.systemPackages = with pkgs; [
pass ssh-ident
];
programs.browserpass.enable = true;
environment.shellAliases = {
ssh = "ssh-ident";
};
}
|