blob: c7cfd3a761a8bfa1e49e882b11aca688fd4395af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
{ pkgs, config, ... }:
let
inherit (config.home) username;
in
{
age = {
identityPaths = [ "${config.home.homeDirectory}/.ssh/agenix" ];
secretsDir = "${config.home.homeDirectory}/.local/share/agenix";
};
imports = [
./direnv.nix
./eza.nix
./fd.nix
./fish.nix
./git.nix
./go.nix
./kitty.nix
./onepassword.nix
./ssh.nix
./starship.nix
../programs/emacs
../programs/firefox
];
home.homeDirectory = "/Users/${username}";
programs.bat.enable = true;
home.packages = with pkgs; [
age
aider-chat
bandwhich
bottom
coreutils
delve
dive # explore layers in docker images
docker
docker-credential-helpers
dust
fish
jless
jq
nil # nix lsp
nix-direnv # integration with direnv
nixfmt-rfc-style # new formatter
procs
restic
ripgrep
shellcheck
tree
wget
wireshark
yq
yubikey-manager
];
home.sessionVariables = {
LESS = "-FRSXM";
LESSCHARSET = "utf-8";
PAGER = "less";
SHELL = "${pkgs.fish}/bin/fish";
};
xdg.enable = true;
}
|