zaneyos/options.nix

87 lines
2.5 KiB
Nix
Raw Normal View History

# 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 = "zaney";
hostname = "hyprnix";
userHome = "/home/${username}";
2024-02-13 02:12:18 +01:00
flakeDir = "${userHome}/zaneyos";
waybarStyle = "slickbar-num"; # simplebar, slickbar, slickbar-num, or default
in {
# User Variables
username = "${username}";
hostname = "${hostname}";
gitUsername = "Tyler Kelley";
gitEmail = "tylerzanekelley@gmail.com";
theme = "catppuccin-mocha";
slickbar = if waybarStyle == "slickbar" then true else false;
slickbar-num = if waybarStyle == "slickbar-num" then true else false;
simplebar = if waybarStyle == "simplebar" then true else false;
borderAnim = true;
browser = "firefox";
2024-02-12 06:35:45 +01:00
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 = "alacritty"; # This sets the terminal that is used by the hyprland terminal keybinding
# System Settings
2024-02-12 01:45:06 +01:00
clock24h = false;
theLocale = "en_US.UTF-8";
theKBDLayout = "us";
theSecondKBDLayout = "de";
theKBDVariant = "";
theLCVariables = "en_US.UTF-8";
theTimezone = "America/Chicago";
2024-02-09 03:51:04 +01:00
theShell = "bash"; # Possible options: bash, zsh
2024-02-12 06:35:45 +01:00
theKernel = "default"; # 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;
2024-02-06 07:47:13 +01:00
nfsMountPoint = "/mnt/nas";
nfsDevice = "nas:/volume1/nas";
# NTP & HWClock Settings
ntp = true;
localHWClock = false;
# Enable Printer & Scanner Support
2024-02-08 04:03:29 +01:00
printer = false;
# Enable Flatpak & Larger Programs
2024-02-19 15:27:59 +01:00
distrobox = false;
flatpak = false;
kdenlive = true;
blender = true;
# Enable Support For
# Logitech Devices
logitech = true;
# Enable Terminals
# If You Disable All You Get Kitty
wezterm = false;
alacritty = true;
kitty = false;
# Enable Python & PyCharm
python = false;
}