-
Notifications
You must be signed in to change notification settings - Fork 0
/
preferences.nix
36 lines (34 loc) · 986 Bytes
/
preferences.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
{...}: {
myOptions = {
# ---- SYSTEM SETTINGS ---- #
systemSettings = {
systemarch = "x86_64-linux"; # system arch
hostname = "Ainz-NIX"; # hostname
timezone = "Asia/Kolkata"; # select timezone
locale = "en_US.UTF-8"; # select locale
additionalLocale = "en_IN";
stableversion = "24.11";
secureboot = true;
laptop = false;
};
# ----- USER SETTINGS ----- #
userSettings = {
username = "masum"; # username
name = "Masum R."; # name/identifier
gitname = "John Titor"; # git name
gitemail = "[email protected]"; # git email
gpgkey = "29B0514F4E3C1CC0"; # gpg key
shell = "zsh"; # user default shell # choose either zsh or bash
};
servicesSettings = {
adb = false;
avahi = false;
nginx = true;
containers = false;
tpm = false;
virtualisation = false;
printing = false;
apparmor = false;
};
};
}