blob: 4d605c1ed197c86f2569a20d715e02fa2b1faf46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ pkgs, ... }: {
imports = [ ./common.nix ];
home.homeDirectory = "/home/lx";
xdg.userDirs.download = "/home/lx/Downloads";
services.gpg-agent.enable = true;
services.gpg-agent.enableSshSupport = false;
services.gpg-agent.pinentryFlavor = "qt";
services.gpg-agent.extraConfig = "no-allow-external-cache";
programs.keychain = {
enable = true;
enableBashIntegration = true;
keys = [ "~/.ssh/id_ed25519" ];
};
services.syncthing.enable = true;
}
|