-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.nix
More file actions
392 lines (331 loc) · 9.19 KB
/
configuration.nix
File metadata and controls
392 lines (331 loc) · 9.19 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
# I DO NOT KNOW HOW THIS THING WORKS
# I DO NOT KNOW WHY THIS IS HERE
{ config, pkgs, lib, ... }:
{
imports =
[ # Include the results of the hardware scan.
/etc/nixos/hardware-configuration.nix
./cfgs/vim.nix
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking
networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "America/Los_Angeles";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
i18n.inputMethod = {
enable = true;
type = "fcitx5";
fcitx5.addons = with pkgs; [
qt6Packages.fcitx5-chinese-addons
];
# uim.toolbar = "gtk3";
};
i18n.supportedLocales = [
"en_US.UTF-8/UTF-8"
"zh_CN.UTF-8/UTF-8"
];
# Enable the X11 windowing system.
services.xserver.enable = true;
services.xserver.windowManager.dwm = {
enable = true;
package = pkgs.dwm.overrideAttrs {
src = ./src/dwm;
};
};
# display manager
services.displayManager.ly.enable = true;
# fix screen tearing on X11, hopefully.
services.picom = {
enable = true;
vSync = true;
};
# Enable the GNOME Desktop Environment.
# services.xserver.displayManager.gdm.enable = true;
# services.xserver.desktopManager.gnome.enable = true;
# Configure keymap in X11
services.xserver.xkb = {
layout = "us";
variant = "";
};
# Enable CUPS to print documents.
# services.printing.enable = true;
# Enable sound with pipewire.
services.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
};
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
# however, you need to configure
services.libinput.touchpad = {
naturalScrolling = true;
clickMethod = "clickfinger";
tappingButtonMap = "lrm";
};
# Define a user account. Don't forget to set a password with ‘passwd’.
users.users.svi = {
isNormalUser = true;
description = "svi";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
# thunderbird
];
};
# manage hibernate and suspend states
powerManagement.enable = true;
# interfaces well with tlp, do not disable!
services.thermald.enable = true;
services.tlp = {
enable = true;
settings = {
# run `tlp-stat -p` and check under "Processor" and "Platform Profile".
CPU_ENERGY_PERF_POLICY_ON_BAT="power";
PLATFORM_PROFILE_ON_BAT="low-power";
# disable CPU boost.
CPU_BOOST_ON_BAT=0;
# disable Adaptive Backlight Modulation (ABM)
AMDGPU_ABM_LEVEL_ON_BAT=3;
};
};
# i don't know what this does
virtualisation.docker.enable = true;
# bluetooth
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
services.blueman.enable = true;
# services.mongodb.enable = true;
# some versions of mongodb fails to build
# services.mongodb.package = pkgs.mongodb-ce;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
# dev tools
git
lldb
patchelf
python312
nix-index # nix-locate
jdk25_headless # openJDK 21
nodejs_24
man-pages
man-pages-posix
hugo
nixd # nix language server
jdt-language-server # java
bash-language-server
ocaml
opam # ocaml package manager
ocamlPackages.utop
texliveBasic
texlab # LaTeX language server
crush
# c development
clang-tools
clang
gcc
glibc
libgcc
gdb
gnumake
cmake
# utilities
lf # terminal file manager
openconnect # vpn client
gnupg
pinentry-curses
paperkey
htop
brightnessctl # device brightness control
dmenu # dynamic menu for dwm
(slstatus.overrideAttrs { # status monitor
src = ./src/slstatus;
})
scrot # screenshots
xclip # clipboard
ascii
wget
dunst # notifications
libnotify # notifications
zip
unzip
helix # text editor
usbutils
leetgo
alacritty-graphics
# graphic applications
obsidian
(vscode-with-extensions.override {
vscodeExtensions = with vscode-extensions;
[
ms-vscode.cpptools
ms-python.python
ms-vscode.live-server
ms-vscode.makefile-tools
emroussel.atomize-atom-one-dark-theme
jeff-hykin.better-nix-syntax
github.copilot-chat
];
})
krita
pinta
firefox
librewolf
nsxiv # image viewer
obs-studio
vlc
bolt-launcher
runelite
discordo
thunderbird
# vanity
fastfetch
feh # wallpaper
oh-my-git # game
];
programs.tmux = {
enable = true;
clock24 = true;
escapeTime = 5;
terminal = "tmux-256color";
extraConfig = "set -g mouse on
set -s set-clipboard on";
};
# kernel version
# 6.12.* causes screen tearing on GNOME
# boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_12;
# x display locker
programs.slock.enable = true;
programs.xss-lock.enable = true;
programs.xss-lock.lockerCommand = "/run/wrappers/bin/slock";
# no idea why this is here? this is why we document, kids
services.pcscd.enable = true;
# required to make gpg work properly
programs.gnupg.agent = {
enable = true;
pinentryPackage = pkgs.pinentry-curses;
enableSSHSupport = true;
};
# expose `pass` to secret service
services.passSecretService.enable = true;
programs.steam = {
enable = true;
# remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
# dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
# localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
};
# unfree packages
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"obsidian"
"vscode"
"vscode-with-extensions"
"vscode-extension-ms-vscode-cpptools"
"vscode-extension-github-copilot-chat"
"mongodb"
"mongodb-ce"
"steam"
"steam-original"
"steam-unwrapped"
"steam-run"
"crush"
];
# libolm is deprecated but still used in nheko as of version 0.12.1
# nixpkgs.config.permittedInsecurePackages = [
# "olm-3.2.16"
# ];
# unpackaged executables fix?
# update 1/16/26: it works!
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
glibc
# libx11
# libxrender
# libxcursor
# libxkbcommon
# libxrandr
# libGL
];
fonts = {
packages = with pkgs; [
nerd-fonts.caskaydia-cove
wqy_microhei # cn & jp
nanum # kr
];
fontconfig = {
defaultFonts = {
serif = ["DejaVu Serif" "wqy_microhei" "nanum"];
sansSerif = ["DejaVu Sans" "wqy_microhei" "nanum"];
monospace = ["CaskaydiaCove Nerd Font"];
};
};
};
console.font = null;
environment.variables = {
EDITOR = "hx";
};
environment.localBinInPath = true;
xdg.mime.defaultApplications = {
"text/html" = "librewolf.desktop";
"x-scheme-handler/http" = "librewolf.desktop";
"x-scheme-handler/https" = "librewolf.desktop";
"x-scheme-handler/about" = "librewolf.desktop";
"x-scheme-handler/unknown" = "librewolf.desktop";
"application/pdf" = "librewolf.desktop";
"image/png" = "nsxiv.desktop";
"image/jpeg" = "nsxiv.desktop";
"image/gif" = "nsxiv.desktop";
"image/webp" = "nsxiv.desktop";
};
nix.nixPath = [
"nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos"
"nixos-config=/home/svi/nixos-configuration/configuration.nix"
"/nix/var/nix/profiles/per-user/root/channels"
];
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# Enable the OpenSSH daemon.
# services.openssh.enable = true;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. It‘s perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "25.05"; # Did you read the comment?
}