blob: a50ddb6d6418a3976393420f18e46a49cf8bd4b6 (
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
|
inputs:
{ config, pkgs, ... }:
let
inherit (pkgs.unstable)
clang
clang-tools
elixir_ls
rust-analyzer-unwrapped
vimPlugins;
inherit (pkgs.unstable.python3Packages) python-language-server;
in
{
users.extraUsers.minijackson.packages = with pkgs; [
clang
clang-tools
elixir
gcc
gdb
man-pages
rr
rtags
];
vim = {
extraPlugins = with vimPlugins; [
nvim-lspconfig
rust-tools-nvim
vim-grammarous
];
luaConfig = builtins.readFile ../../dotfiles/vim-dev.lua;
# TODO: make this a NixOS module
variables = {
clangd_cmd = "{ '${clang-tools}/bin/clangd', '--resource-dir=${clang}/resource-root' }";
elixirls_cmd = "{ '${elixir_ls}/bin/elixir-ls' }";
pyls_cmd = "{ '${python-language-server}/bin/pyls' }";
rust_analyzer_cmd = "{ '${rust-analyzer-unwrapped}/bin/rust-analyzer' }";
};
};
programs.zsh.interactiveShellInit = ''
(( $+commands[rustc] )) && fpath+="$(rustc --print sysroot)/share/zsh/site-functions"
'';
documentation.dev.enable = true;
boot.kernel.sysctl = {
# For RR
"kernel.perf_event_paranoid" = 1;
};
home-manager.users.minijackson = { config, ... }:
{
home.file.".clang-format".source = (pkgs.formats.yaml { }).generate
"clang-format.yml"
{
BasedOnStyle = "Mozilla";
ColumnLimit = 100;
TabWidth = 4;
IndentWidth = 4;
UseTab = "ForIndentation";
AccessModifierOffset = -4;
AlwaysBreakAfterDefinitionReturnType = "None";
AlwaysBreakAfterReturnType = "None";
AlwaysBreakTemplateDeclarations = true;
BinPackArguments = false;
BinPackParameters = false;
BreakConstructorInitializers = "BeforeComma";
Cpp11BracedListStyle = true;
DerivePointerAlignment = false;
NamespaceIndentation = "Inner";
PenaltyBreakBeforeFirstCallParameter = 2;
PointerAlignment = "Left";
Standard = "Latest";
};
programs.direnv = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
};
};
services.lorri.enable = true;
}
|