blob: c2377fb03ec747b572c35535c589a6c80437040e (
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
|
{ config, pkgs, pkgs-personal, hostname, ... }:
{
imports = [
# define options custom to this config
./custom.nix
# load host specific stuff
(./host + ("/" + hostname + ".nix"))
# task shortcuts
./module/tasker.nix
./tasks/default.nix
];
home = {
stateVersion = "22.11";
username = "common";
homeDirectory = "/home/common";
keyboard = {
layout = "de";
options = [ "caps:escape" ];
};
packages = [
pkgs-personal.persistent-nix-shell
];
};
programs.git = {
enable = true;
package = pkgs.gitFull;
lfs.enable = true;
settings.user = {
name = "Adrian Kummerlaender";
email = "adrian@kummerlaender.eu";
};
settings = {
core.editor = "vim";
merge.tool = "${pkgs.meld}/bin/meld";
pull.ff = "only";
init.defaultBranch = "master";
gitlab.user = "KnairdA";
};
};
programs.difftastic.enable = true;
programs.ssh = {
enable = true;
matchBlocks = {
"automatix" = {
hostname = "kummerlaender.eu";
user = "common";
};
"atlas" = {
hostname = "10.100.0.3";
user = "common";
};
};
};
systemd.user.startServices = true;
services.gpg-agent = {
enable = true;
enableSshSupport = true;
enableScDaemon = false;
defaultCacheTtl = 43200;
maxCacheTtl = 43200;
defaultCacheTtlSsh = 43200;
maxCacheTtlSsh = 43200;
pinentry.package = pkgs.pinentry-gnome3;
};
programs.fish = {
enable = true;
};
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
xdg = {
mimeApps.enable = true;
configFile."mimeapps.list".force = true;
};
home.sessionVariables.EDITOR = "vim";
}
|