blob: 4ab6ddf69f273836159e875af0d07b306199c2fc (
plain)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
{ config, lib, pkgs, self, ... }:
let
cfg = config.profiles.development;
in
{
options.profiles.development = {
enable = lib.mkEnableOption
"A profile that enables the system to be used for developing programs";
};
config = lib.mkIf cfg.enable {
programs.git = {
enable = true;
package = pkgs.gitFull;
userName = "sefidel";
userEmail = "contact@sefidel.net";
signing = {
key = "8BDFDFB56842239382A0441B9238BC709E05516A";
signByDefault = true;
};
aliases = {
graph =
"log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold yellow)%h%C(reset) - %C(green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n %C(normal)%s%C(reset) %C(blue)- %an%C(reset)' --all";
co = "checkout";
br = "branch";
st = "status";
ps = "push";
pl = "pull";
root = "rev-parse --show-toplevel";
};
extraConfig = {
init.defaultBranch = "main";
pull.rebase = true;
merge.conflictStyle = "diff3";
mergetool.fugitive = {
cmd = ''nvim -f -c "Gvdiffsplit!" "$MERGED"'';
trustExitCode = true;
};
merge.tool = "fugitive";
mergetool.prompt = false;
sendemail = {
smtpserver = "smtp.migadu.com";
smtpuser = "contact@sefidel.com";
smtpencryption = "ssl";
smtpserverport = "465";
};
};
ignores = [
# IntelliJ files and folders
".idea/"
"*.iml"
# backupfiles and shadow copies done by editors
"*~"
"\\#*\\#"
".#*"
# Elixir language server
"/.elixir_ls"
# MyPy Cache
".mypy_cache"
# Visual Studio Code project configuration
"/.vscode"
# Result folder for nix builds
"result"
"result-*"
# direnv caches
".direnv/"
# emacs/python stuff
"flycheck_*.py"
];
};
# GPG Authentication subkey is used for provisioning the server,
# thus we need to use fallback key to identify with gitolite.
programs.ssh.enable = true; # this has no relation with the sshd daemon.
programs.ssh.extraConfig = ''
Host git.exotic.sh
User git
Port 22
IdentityFile ~/.ssh/id_ed25519
IdentitiesOnly true
Host git-admin.vhosts.exotic.sh
HostName git.exotic.sh
User git
Port 22
IdentityFile ~/.ssh/sefidel.pub
IdentitiesOnly true
'';
home.packages = [
pkgs.bfg-repo-cleaner
pkgs.diffoscopeMinimal
pkgs.colmena
pkgs.du-dust
pkgs.deploy-rs
# pkgs.dnsutils # Err on darwin
# TODO: https://github.com/cli/cli/issues/4955
pkgs.gh
pkgs.hyperfine
pkgs.jq
pkgs.lsof
pkgs.ouch
pkgs.tcpdump
pkgs.tokei
pkgs.mtr
pkgs.nixpkgs-fmt
pkgs.nixpkgs-review
pkgs.nmap
pkgs.ripgrep
pkgs.rust-analyzer
pkgs.sd
pkgs.tig
pkgs.xh
pkgs.cargo-play
pkgs.cargo-edit
pkgs.cargo-sort
pkgs.cargo-diet
pkgs.cargo-deny
# pkgs.lldb # Broken
pkgs.ghc
pkgs.stack
# (pkgs.haskell-language-server.override { supportedGhcVersions = [ (builtins.replaceStrings [ "." ] [ "" ] pkgs.ghc.version) ]; })
pkgs.sbcl
# pkgs.lispPackages.quicklisp
# pkgs.lispPackages.clwrapper
(pkgs.python3.withPackages (ps: with ps; [ pynvim ]))
pkgs.gopls
] ++ pkgs.lib.optionals (pkgs.stdenv.isLinux) [
# TODO: currently broken/doesn't support Darwin
pkgs.valgrind
pkgs.clang-tools
];
};
}
|