-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.nix
More file actions
211 lines (191 loc) · 3.91 KB
/
Copy pathconfiguration.nix
File metadata and controls
211 lines (191 loc) · 3.91 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
# CUSTOM CONFIGURATION Knuspii
# Help is available in the configuration.nix man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
];
# Bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.timeout = 5;
# Networking
networking.hostName = "nixos";
networking.networkmanager.enable = true;
# Firewall + SSH + Printing
networking.firewall = {
enable = true;
allowedTCPPorts = [ 22 ];
};
services.openssh.enable = false;
services.printing.enable = false;
# Timezone / Locale
time.timeZone = "Europe/Berlin";
i18n.defaultLocale = "de_DE.UTF-8";
console.keyMap = "de";
# Optimize
services.fstrim.enable = true;
boot.loader.systemd-boot.configurationLimit = 10;
#services.irqbalance.enable = false;
nix = {
settings = {
auto-optimise-store = true;
};
optimise = {
automatic = true;
dates = [ "Sun 10:00" ];
};
gc = {
automatic = true;
dates = "Sun 10:00";
options = "--delete-older-than 30d";
};
};
services.journald.extraConfig = ''
SystemMaxUse=500M
SystemMaxFileSize=50M
MaxRetentionSec=7day
'';
fileSystems."/" = {
options = [ "noatime" ];
};
# Swap
swapDevices = [
{ device = "/swapfile"; size = 4092; } # 4GB
];
# KDE Plasma
services.xserver.enable = true;
services.displayManager.ly.enable = true;
services.desktopManager.plasma6.enable = true;
services.xserver.xkb.layout = "de";
environment.etc."xdg/kwalletrc".text = ''
[Wallet]
Enabled=false
First Use=false
'';
# Graphics
hardware.graphics = {
enable = true;
enable32Bit = true;
};
services.xserver.videoDrivers = [ "nvidia" ];
hardware.nvidia = {
modesetting.enable = true;
open = false;
nvidiaSettings = true;
};
# Audio
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
# Fonts
fonts.packages = with pkgs; [
fira-code
nerd-fonts.fira-code
];
# AT
services.atd.enable = true;
# Global packages
environment.systemPackages = with pkgs; [
# Tools
nano
git
curl
wget
unzip
unrar
dust
htop
bottom
tree
nmap
iperf3
dig
bat
gdu
traceroute
gping
shellcheck
fastfetch
file
wireguard-tools
steam-run
usb-modeswitch
usbutils
libnotify
alsa-utils
vhs
ffmpeg
trash-cli
];
# User packages
users.users.user = {
isNormalUser = true;
description = "User";
extraGroups = [ "networkmanager" "wheel" "audio" "video" "dialout" ];
packages = with pkgs; [
# Dev
python3
go
jq
gcc
jdk21
# GUI
firefox
vlc
gimp
keepassxc
libreoffice
discord
spotify
vscode
prismlauncher
mangohud
itch
conky
easyeffects
zed-editor
];
};
# Remove Plasma packages
environment.plasma6.excludePackages = with pkgs.kdePackages; [
elisa
spectacle
discover
qrca
kate
kwalletmanager
khelpcenter
plasma-browser-integration
plasma-welcome
];
# Gaming
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
programs.gamemode = {
enable = true;
enableRenice = true;
settings = {
general = {
softrealtime = "auto";
renice = 10;
};
custom = {
start = "${pkgs.libnotify}/bin/notify-send -a 'Gamemode' 'GameMode started'";
end = "${pkgs.libnotify}/bin/notify-send -a 'Gamemode' 'GameMode ended'";
};
};
};
# Unfree Packages
nixpkgs.config.allowUnfree = true;
# Version
system.stateVersion = "25.11";
}