blob: dc24dae6b12419d85b5c4b81df5038c421eb436d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ pkgs, ... }: {
imports = [ ./common.nix ];
home.homeDirectory = "/home/lx.nix";
xdg.userDirs.download = "/home/lx.nix/Downloads";
programs.keychain = {
enable = true;
enableBashIntegration = true;
keys = [ "~/.ssh/id_ed25519" ];
};
services.syncthing.enable = true;
}
|