-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.nix
56 lines (51 loc) · 1.13 KB
/
home.nix
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
{ pkgs, ... }: {
home.username = "david";
home.homeDirectory = "/Users/david";
home.stateVersion = "22.11";
programs.home-manager.enable = true;
home.packages = with pkgs; [
atuin
bat
datasette
difftastic
dive
git
jq
mosh
mtr
neovim
nixpkgs-fmt
ripgrep
sfz
shellcheck
sqlite-interactive
tmux
watchexec
hurl
flyctl
lima
graphicsmagick
nixd
btop
];
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
programs.fzf = {
enable = true;
enableFishIntegration = true;
};
home.file = {
".gemrc".source = ./dotfiles/gemrc;
".gitconfig".source = ./dotfiles/gitconfig;
".gitignore".source = ./dotfiles/gitignore;
".ideavimrc".source = ./dotfiles/ideavimrc;
".tmux.conf".source = ./dotfiles/tmux.conf;
".config/nvim/init.lua".source = ./dotfiles/neovim.lua;
".config/fish/config.fish".source = ./dotfiles/config.fish;
".config/fish/nightfox.fish".source = ./dotfiles/nightfox.fish;
".cargo/config.toml".source = ./dotfiles/cargo.toml;
".sqliterc".source = ./dotfiles/sqliterc;
};
}