blob: 53cef7dbad00617b1d76909a51a2a1c0437fed85 (
plain) (
blame)
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
|
{ config, lib, inputs, pkgs, ...}: with lib; let
cfg = config.santi-modules;
in {
imports = [
inputs.agenix.nixosModules.default
inputs.home-manager.nixosModules.home-manager
];
options.santi-modules = {
default-user.enable = mkOption {
type = types.bool;
default = true;
description = "Enables default user configuration and ssh access";
};
mu.enable = mkEnableOption "Enables mu, mbsync and msmtp";
firefox.enable = mkEnableOption "Enables firefox";
};
config = mkIf config.santi-modules.default-user.enable {
environment.systemPackages = [
pkgs.rage
] ++ (if cfg.mu.enable then [ pkgs.parallel ] else []);
users.mutableUsers = false;
users.users.leonardo = {
isNormalUser = true;
description = "leonardo";
extraGroups = [ "networkmanager" "wheel" ];
shell = pkgs.bashInteractive;
hashedPasswordFile = config.age.secrets.user-pass.path;
openssh.authorizedKeys.keys = [ (builtins.readFile ../secrets/user-ssh-key.pub)] ++ builtins.attrValues (import ../secrets/host-pub-keys.nix);
};
age.secrets = let
with-perms = name: {
file = ../secrets/${name}.age;
owner = "leonardo";
group = "users";
};
in {
user-pass = with-perms "user-pass";
user-ssh-key = {
file = ../secrets/user-ssh-key.age;
path = "/home/leonardo/.ssh/id_ed25519";
owner = "leonardo";
group = "users";
};
} // (optionalAttrs cfg.mu.enable (let
mails = ["work-mail" "personal-mail" "university-mail"];
mail-cfg = map (n: {name = n; value = with-perms n;}) mails;
in
listToAttrs mail-cfg))
// (optionalAttrs cfg.services.ddns.enable ({
cloudflare = with-perms "cloudflare";
}));
programs.ssh.startAgent = true;
services.openssh = {
enable = true;
settings = {
KbdInteractiveAuthentication = false;
PasswordAuthentication = false;
};
};
home-manager = {
backupFileExtension = "backup";
useGlobalPkgs = true;
useUserPackages = true;
users.leonardo = {
imports = [ (import ./gnome/gnome-config.nix config.santi-modules) ];
home = {
stateVersion = "23.05";
homeDirectory = "/home/leonardo";
file.".ssh/id_ed25519.pub".source = ../secrets/user-ssh-key.pub;
file.".mozilla/firefox/leonardo/chrome/firefox-gnome-theme" = mkIf cfg.firefox.enable { source = inputs.firefox-gnome-theme; };
packages = lib.optionals cfg.desktop-environment.enable (with pkgs; [
discord
slack
whatsapp-for-linux
telegram-desktop
]);
};
programs = {
bash = {
enable = true;
enableCompletion = true;
initExtra = ''
shopt -s -q autocd
shopt -s no_empty_cmd_completion
'';
};
fzf = {
enable = true;
enableBashIntegration = true;
};
git = {
enable = true;
lfs.enable = true;
diff-so-fancy.enable = true;
extraConfig = {
user = {
name = "Leonardo Santiago";
email = "[email protected]";
signingkey = "~/.ssh/id_ed25519";
};
color.ui = true;
gpg.format = "ssh";
commit.gpgsign = true;
};
};
mu.enable = cfg.mu.enable;
msmtp.enable = cfg.mu.enable;
mbsync.enable = cfg.mu.enable;
firefox = {
enable = cfg.firefox.enable;
package = pkgs.firefox.override { # nixpkgs' firefox/wrapper.nix
nativeMessagingHosts = optional cfg.gnome.enable [
pkgs.gnome-browser-connector
];
};
profiles.leonardo = {
userChrome = ''
@import "firefox-gnome-theme/userChrome.css";
'';
userContent = ''
@import "firefox-gnome-theme/userContent.css";
'';
settings = {
"toolkit.legacyUserProfileCustomizations.stylesheets" = true; # Enable customChrome.cs
"browser.uidensity" = 0; # Set UI density to normal
"svg.context-properties.content.enabled" = true; # Enable SVG context-propertes
# firefox-gnome-theme
"gnomeTheme.activeTabContrast" = true;
"gnomeTheme.hideWebrtcIndicator" = true;
"gnomeTheme.bookmarksToolbarUnderTabs" = true;
"gnomeTheme.hideSingleTab" = true;
};
};
policies = {
DisableTelemetry = true;
DisableFirefoxStudies = true;
EnableTrackingProtection = {
Value= true;
Locked = true;
Cryptomining = true;
Fingerprinting = true;
};
DisablePocket = true;
DisableFirefoxAccounts = true;
DisableAccounts = true;
DisableFirefoxScreenshots = true;
OverrideFirstRunPage = "";
OverridePostUpdatePage = "";
DontCheckDefaultBrowser = true;
ExtensionSettings = {
"*".installation_mode = "blocked"; # blocks all addons except the ones specified below
# uBlock Origin:
"[email protected]" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
installation_mode = "force_installed";
};
};
};
};
};
services.mbsync = mkIf cfg.mu.enable {
enable = true;
frequency = "*:0/5";
};
accounts.email.accounts = mkIf cfg.mu.enable {
personal = {
address = "[email protected]";
userName = "[email protected]";
imap.host = "imap.gmail.com";
smtp.host = "smtp.gmail.com";
primary = true;
realName = "Leonardo Ribeiro Santiago";
mbsync = {
enable = true;
create = "both";
expunge = "both";
};
msmtp.enable = true;
mu.enable = true;
passwordCommand = "cat ${config.age.secrets.personal-mail.path}";
};
university = {
address = "[email protected]";
userName = "[email protected]";
imap.host = "imap.gmail.com";
smtp.host = "smtp.gmail.com";
realName = "Leonardo Ribeiro Santiago";
mbsync = {
enable = true;
create = "both";
expunge = "both";
};
msmtp.enable = true;
mu.enable = true;
passwordCommand = "cat ${config.age.secrets.university-mail.path}";
};
work = {
address = "[email protected]";
userName = "[email protected]";
imap.host = "imap.gmail.com";
smtp.host = "smtp.gmail.com";
realName = "Leonardo Ribeiro Santiago";
mbsync = {
enable = true;
create = "both";
expunge = "both";
};
msmtp.enable = true;
mu.enable = true;
passwordCommand = "cat ${config.age.secrets.work-mail.path}";
};
};
};
};
};
}
|