-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.nix
71 lines (61 loc) · 1.74 KB
/
options.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
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
# PLEASE READ THE WIKI FOR DETERMINING
# WHAT TO PUT HERE AS OPTIONS.
# https://gitlab.com/Zaney/zaneyos/-/wikis/Setting-Options
let
# THINGS YOU NEED TO CHANGE
username = "marvin";
hostname = "nixos";
userHome = "/home/${username}";
flakeDir = "${userHome}/marvinos";
waybarStyle = "default"; # simplebar, slickbar, slickbar-num, or default
in {
# User Variables
username = "${username}";
hostname = "${hostname}";
gitUsername = "martin-gif";
# gitEmail = "tylerzanekelley@gmail.com";
# theme = "gigavolt";
borderAnim = true;
browser = "firefox";
wallpaperDir = "${userHome}/Pictures/Wallpapers";
screenshotDir = "${userHome}/Pictures/Screenshots";
flakeDir = "${flakeDir}";
# System Settings
clock24h = true;
theLocale = "de_DE.UTF-8";
theKBDLayout = "de";
theSecondKBDLayout = "de";
theKBDVariant = "";
theLCVariables = "de_DE.UTF-8";
theTimezone = "Europe/Berlin";
theShell = "zsh";
theKernel = "zen"; # Possible options: default, latest, lqx, xanmod, zen
sdl-videodriver = "x11"; # Either x11 or wayland ONLY. Games might require x11 set here
# For Hybrid Systems intel-nvidia
# Should Be Used As gpuType
cpuType = "intel";
gpuType = "amd";
# Nvidia Hybrid Devices
# ONLY NEEDED FOR HYBRID
# SYSTEMS!
intel-bus-id = "PCI:0:2:0";
nvidia-bus-id = "PCI:14:0:0";
# Enable / Setup NFS
nfs = false;
nfsMountPoint = "/mnt/nas";
nfsDevice = "nas:/volume1/nas";
# NTP & HWClock Settings
ntp = true;
localHWClock = false;
# Enable Printer & Scanner Support
printer = false;
# Enable Terminals
# If You Disable All You Get Kitty
wezterm = true;
alacritty = false;
kitty = true;
# Enable Python & PyCharm
python = false;
# Enable SyncThing
syncthing = false;
}