summaryrefslogtreecommitdiff
path: root/nixpkgs/lindy.nix
blob: c1baee5d128d879cf50808d91c1f1b7dfe451659 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ 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" ];
  };
}