-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.nix
88 lines (76 loc) · 2.48 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
# PLEASE READ THE WIKI FOR DETERMINING
# WHAT TO PUT HERE AS OPTIONS.
# https://gitlab.com/Zaney/zaneyos/-/wikis/Setting-Options
let
username = "leoc";
hostname = "nixos";
userHome = "/home/${username}";
flakeDir = "${userHome}/nixos";
waybarStyle = "slickbar"; # simplebar, slickbar, or default
in {
# User Variables
username = "${username}";
hostname = "${hostname}";
gitUsername = "Léo Coletta";
gitEmail = "[email protected]";
theme = "tokyo-night-storm";
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 = "firefox";
wallpaperGit = "https://github.com/leo91000/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}/.nixos-previous";
flakeBackup = "${userHome}/.nixos-backup";
terminal = "alacritty"; # This sets the terminal that is used by the hyprland terminal keybinding
# System Settings
clock24h = true;
theLocale = "fr_FR.UTF-8";
theKBDLayout = "fr";
theSecondKBDLayout = "us";
theKBDVariant = "";
theLCVariables = "fr_FR.UTF-8";
theTimezone = "Europe/Paris";
theShell = "zsh"; # Possible options: bash, zsh
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 = "intel-nvidia";
# Nvidia Hybrid Devices
# ONLY NEEDED FOR HYBRID
# SYSTEMS!
intel-bus-id = "PCI:0:2:0";
nvidia-bus-id = "PCI:1: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 = true;
# Enable Flatpak & Larger Programs
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 = true;
# Enable SyncThing
syncthing = false;
}