-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.nix
64 lines (59 loc) · 1.48 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
{pkgs, ...}: {
home.username = "fumnanya";
home.homeDirectory = "/home/fumnanya";
home.stateVersion = "23.11";
programs.home-manager.enable = true;
targets.genericLinux.enable = true;
home.packages = [
pkgs.neofetch
pkgs.pyenv
pkgs.poetry
pkgs.radicle-cli
pkgs.starship
pkgs.zoxide
pkgs.fzf
pkgs.atuin
];
programs.git = {
enable = true;
userName = "poopsicles";
userEmail = "[email protected]";
aliases = {
co = "checkout";
st = "status";
br = "branch";
ci = "commit";
};
extraConfig = {
init.defaultBranch = "main";
};
};
programs.starship = {
enable = true;
settings = {
character = {
success_symbol = "[➜](bold green)";
error_symbol = "[✗](bold red)";
};
hostname = {
ssh_only = false;
format = "[$hostname](bold #71e968): ";
};
username = {
show_always = true;
format = "[$user](bold #c09bf6)@";
};
};
};
programs.atuin = {
enable = true;
enableZshIntegration = true;
settings = {
dialect = "uk";
enter_accept = false;
sync = {
records = true;
};
};
};
}