-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.nix
80 lines (73 loc) · 1.79 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{ config, pkgs, ... }:
{
home.username = "andrew";
home.homeDirectory = "/home/andrew";
home.stateVersion = "23.11"; # Please read the comment before changing.
home.file = {
".xinitrc" = {
source = ./home/.xinitrc;
target = "/.xinitrc";
};
".fehbg" = {
source = ./home/.fehbg;
target = "/.fehbg";
};
".bashrc" = {
source = ./home/.bashrc;
target = "/.bashrc";
};
".tmux.conf.local" = {
source = ./home/.tmux.conf.local;
target = "/.tmux.conf.local";
};
".vimrc" = {
source = ./home/.vimrc;
target = "/.vimrc";
};
".zshrc" = {
source = ./home/.zshrc;
target = "/.zshrc";
};
"cli.sh" = {
source = ./home/cli.sh;
target = "/cli.sh";
};
".background" = {
source = ./home/.background;
target = "/.background";
};
".psqlrc" = {
source = ./home/.psqlrc;
target = "/.psqlrc";
};
".gitconfig" = {
source = ./home/.gitconfig;
target = "/.gitconfig";
};
".tmux.conf" = {
source = ./home/.tmux.conf;
target = "/.tmux.conf";
};
".config/doom/config.el" = {
source = ./home/.config/doom/config.el;
target = "/.config/doom/config.el";
};
".config/doom/init.el" = {
source = ./home/.config/doom/init.el;
target = "/.config/doom/init.el";
};
".config/i3/config" = {
source = ./home/.config/i3/config;
target = "/.config/i3/config";
};
".config/terminator/config" = {
source = ./home/.config/terminator/config;
target = "/.config/terminator/config";
};
".config/nvim/init.lua" = {
source = ./home/.config/nvim/init.lua;
target = "/.config/nvim/init.lua";
};
};
programs.home-manager.enable = true;
}