-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.nix
37 lines (31 loc) · 796 Bytes
/
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
{ pkgs, ... }: {
home.stateVersion = "23.05";
# Let Home Manager manage itself
programs.home-manager.enable = true;
programs.neovim = {
enable = true;
viAlias = false;
vimAlias = false;
# extraConfig = builtins.readFile ./nvim/init.lua;
};
programs.git = {
enable = true;
includes = [
{ path = ./dotfiles/git/gitconfig; }
];
ignores = ["*~" "*.swp" "*result*" ".direnv" ".DS_Store" "tags"];
};
programs.zsh = {
enable = true;
};
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable=true;
};
home.file = {
".tmux.conf".source = ./dotfiles/tmux/tmux.conf;
".alacritty.toml".source = ./dotfiles/alacritty/alacritty.toml;
".zshrc".source = ./dotfiles/zsh/zshrc;
};
}