-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.nix
93 lines (83 loc) · 2.5 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# 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 = "ben";
hostname = "nora";
userHome = "/home/${username}";
flakeDir = "${userHome}/flake2";
waybarStyle = "simplebar"; # simplebar, slickbar, or default
in {
# User Variables
username = "ben";
hostname = "nora";
gitUsername = "charles37";
gitEmail = "[email protected]";
theme = "3024";
slickbar =
if waybarStyle == "slickbar"
then true
else false;
simplebar =
if waybarStyle == "simplebar"
then true
else false;
bar-number = true; # Enable / Disable Workspace Numbers In Waybar
borderAnim = true;
browser = "qutebrowser";
wallpaperGit = "https://gitlab.com/Zaney/my-wallpapers.git"; # This will give you my wallpapers
# ^ (use as is or replace with your own repo - removing will break the wallsetter script)
wallpaperDir = "${userHome}/Pictures/Wallpapers";
screenshotDir = "${userHome}/Pictures/Screenshots";
flakeDir = "${flakeDir}";
flakePrev = "${userHome}/.zaneyos-previous";
flakeBackup = "${userHome}/.zaneyos-backup";
terminal = "kitty"; # This sets the terminal that is used by the hyprland terminal keybinding
# System Settings
clock24h = false;
theLocale = "en_US.UTF-8";
theKBDLayout = "us";
theSecondKBDLayout = "de";
theKBDVariant = "";
theLCVariables = "en_US.UTF-8";
theTimezone = "America/New_York";
theShell = "bash"; # Possible options: bash, zsh, nushell
theKernel = "zen"; # Possible options: default, latest, lqx, xanmod, zen
sdl-videodriver = "wayland"; # Either x11 or wayland ONLY. Games might require x11 set here
# For Hybrid Systems intel-nvidia
# Should Be Used As gpuType
cpuType = "amd";
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 Flatpak & Larger Programs
distrobox = false;
flatpak = false;
kdenlive = false;
blender = false;
# Enable Support For
# Logitech Devices
logitech = true;
# Enable Terminals
# If You Disable All You Get Kitty
wezterm = false;
alacritty = false;
kitty = true;
# Enable Python & PyCharm
python = false;
# Enable SyncThing
syncthing = false;
}