blob: eb0b305e95926ba6e0d77ae0d553975cd8960976 (
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
|
# Change the following variables
{
# set your host name.
hostName = "continuity";
# username used for unix username as well as msmtp configuration name.
userName = "preston";
# your full name
fullName = "Preston Pan";
# Create a new gpg key for this system or import your keys from another system
gpgKey = "AEC273BF75B6F54D81343A1AC1FE6CED393AE6C1";
# Used for referencing the remote host in config. This mostly shouldn't matter if you are not
# using my website.
remoteHost = "nullring.xyz";
# email used for `From` and also as your login email.
email = "ret2pop@gmail.com";
# IMAPS server. Must be encrypted.
imapsServer = "imap.gmail.com";
# SMTPS server. Must be encrypted.
smtpsServer = "smtp.gmail.com";
# Change to your timezone
timeZone = "America/Vancouver";
# After rebooting, use the command `hyprctl monitors` in order to check which monitor
# you are using. This is so that waybar knows which monitors to appear in.
monitors = [
"HDMI-A-1"
"eDP-1"
"DP-2"
"DP-3"
"LVDS-1"
];
# enable video drivers based on your system.
# Example:
# videoDrivers = [
# "nvidia"
# "amdgpu"
# ]
videoDrivers = [
];
# use false if this is your first install of continuity.
# See https://github.com/nix-community/lanzaboote/blob/master/docs/QUICK_START.md
# for more information.
secureBoot = false;
}
|