-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.nix
391 lines (322 loc) · 9.2 KB
/
configuration.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
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
# 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’).
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./vim.nix
#./wireguard.nix
#./rtl88xx.nix
];
# Enable Flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# Limit the number of generations to keep
boot.loader.systemd-boot.configurationLimit = 8;
networking.hostName = "redpill-nix-yoga"; # Define your hostname.
networking.wireless.enable = false; # Enables wireless support via wpa_supplicant.
# Enable networking
networking = {
networkmanager.enable = true;
#useDHCP = true;
#interfaces.enp0s20f0u2 = {
# ipv4.addresses = [{
# address = "192.168.50.120";
# prefixLength = 24;
# }];
# };
#defaultGateway = {
# address = "192.168.50.1";
# interface = "enp0s20f0u2";
#};
#nameservers = [ "1.1.1.1" "8.8.8.8" ];
};
# Swap file
swapDevices = [
{
device = "/swapfile";
size = 32 * 1024; # size of RAM to allow hybrid sleep.
}
];
boot.kernel.sysctl = { "vm.swappiness" = 0; };
# Set your time zone.
time.timeZone = "Europe/London";
# Select internationalisation properties.
i18n.defaultLocale = "en_GB.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_GB.UTF-8";
LC_IDENTIFICATION = "en_GB.UTF-8";
LC_MEASUREMENT = "en_GB.UTF-8";
LC_MONETARY = "en_GB.UTF-8";
LC_NAME = "en_GB.UTF-8";
LC_NUMERIC = "en_GB.UTF-8";
LC_PAPER = "en_GB.UTF-8";
LC_TELEPHONE = "en_GB.UTF-8";
LC_TIME = "en_GB.UTF-8";
};
# Perform garbage collection weekly to maintain low disk usage
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 1w";
};
# Optimize storage
# You can also manually optimize the store via:
# nix-store --optimise
# Refer to the following link for more details:
# https://nixos.org/manual/nix/stable/command-ref/conf-file.html#conf-auto-optimise-store
nix.settings.auto-optimise-store = true;
# Laptop power
services.power-profiles-daemon.enable = false; # conflicting option set by Plasma
services.thermald.enable = true;
services.auto-cpufreq.enable = true;
services.auto-cpufreq.settings = {
battery = {
governor = "powersave";
turbo = "never";
};
charger = {
governor = "performance";
turbo = "auto";
};
};
# WINDOW MANAGER STUFF
# KDE Plasma
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
services.displayManager.defaultSession = "plasma";
services.displayManager.sddm.wayland.enable = true;
# OLD CONFIG - GNOME -----------------------------------
# Enable the X11 windowing system.
# services.xserver.enable = true;
# Enable the GNOME Desktop Environment.
# services.xserver.displayManager.gdm.enable = true;
# services.xserver.desktopManager.gnome.enable = true;
# -------------------------------------------------------
# HYPRLAND ---------------------------------------------
# Greeter
#services.greetd = {
# enable = true;
## settings = {
# default_session.command = ''
# ${pkgs.greetd.tuigreet}/bin/tuigreet \
# --time \
# --asterisks \
# --cmd Hyprland
# --remember
# '';
# };
# };
#programs.hyprland = {
# enable = true;
# xwayland.enable = true; # For X applications
# };
# environment.sessionVariables = {
# # If your cursor becomes invisible
# # WLR_NO_HARDWARE_CURSORS = "1";
# # Hint Electron apps to use Wayland
# NIXOS_OZONE_WL = "1";
# };
#xdg.portal.enable = true;
#xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
# --------------------------------------------HYPRLAND
# Configure keymap in X11
services.xserver.xkb = {
layout = "gb";
variant = "";
};
# Configure console keymap
console.keyMap = "uk";
# Enable CUPS to print documents.
#services.printing.enable = true;
fonts.packages = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" "FiraCode" "Meslo" "Hack" "Terminus" ]; })
];
# Enable sound with pipewire.
hardware.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;
# Define a user account. Don't forget to set a password with ‘passwd’.
users.users.nath = {
isNormalUser = true;
description = "Nath";
extraGroups = [ "networkmanager" "wheel" "libvirtd" ];
packages = with pkgs; [
# thunderbird
];
};
#programs.hyprlock.enable = true;
#services.hypridle.enable = true;
# Install browsers
programs.firefox.enable = true;
#programs.chromium.enable = true;
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# AppImage
programs.appimage.binfmt = true;
programs.appimage.enable = true;
# virtualisation
programs.virt-manager.enable = true;
users.groups.libvirtd.members = ["nath"];
virtualisation.libvirtd.enable = true;
virtualisation.spiceUSBRedirection.enable = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
#burpsuite
# hyprland
#rofi # hyprland app launcher moved to home.nix
#dunst
#hypridle
#hyprlock
#hyprutils
#hyprpaper
#kitty # Hyprland default terminal
libnotify
networkmanagerapplet
nmap
#swww
#waybar
# override for Hyperland
#(pkgs.waybar.overrideAttrs (oldAttrs: {
# mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
# })
#)
# browsers
brave
chromium # for some reason, doesn't persist when using programs.chromium.enable
# development
code-cursor
git
vim
# utilities
bat
brightnessctl
btop
curl
dnsutils # dig and nslookup
file
ffmpeg
gnupg
htop
iotop
iperf3
jq
ldns # alternative to dig, provides command "drill"
lm_sensors
mtr # network diagnostic
ntfs3g
ntfsprogs
pavucontrol
p7zip
pciutils # lspci
ranger
ripgrep
sysstat
tree
ueberzug # for ranger image preview
unzip
usbutils # lsusb
vlc
wget
which
wireguard-tools
wpscan # api key Ny9htvNitGRTrXmI0qxNgrGsn8pebf6QLicnBUP6tp0
xz
zip
# other
appimage-run
whatsapp-for-linux
discord
signal-desktop
# 1password
#1password-gui
#1password
];
environment.variables.EDITOR = "vim";
environment.shells = with pkgs; [ zsh ];
users.defaultUserShell = pkgs.zsh;
programs.zsh.enable = true;
programs._1password.enable = true;
programs._1password-gui = {
enable = true;
# Certain features, including CLI integration and system authentication support,
# require enabling PolKit integration on some desktop environments (e.g. Plasma).
polkitPolicyOwners = [ "yourUsernameHere" ];
};
environment.etc = {
"1password/custom_allowed_browsers" = {
text = ''
firefox
chromium
'';
mode = "0755";
};
};
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# List services that you want to enable:
#services.grafana = {
#enable = true;
#settings = {
# server = {
# # Listening Address
# http_addr = "127.0.0.1";
# # and Port
# http_port = 3000;
# # Grafana needs to know on which domain and URL it's running
# #domain = "localhost";
# root_url = "https://localhost/grafana/"; # Not needed if it is `https://your.domain/`
# serve_from_sub_path = true;
# };
#};
#};
#services.prometheus = {
# enable = true;
# port = 9090;
#};
services.tailscale.enable = true;
# 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;
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
intel-ocl
vpl-gpu-rt
intel-compute-runtime
];
};
# 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 = "24.05"; # Did you read the comment?
}