-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrednixos-iso.nix
150 lines (135 loc) · 3.16 KB
/
rednixos-iso.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
{
pkgs,
lib,
...
}: {
# use soystemd-boot EFI boot loader
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
hardware.bluetooth.enable = true;
services = {
timesyncd = {
# feel free to change to sth around your location
# servers = ["pl.pool.ntp.org"];
};
openssh = {
enable = true;
allowSFTP = true;
settings = {
AllowAgentForwarding = false;
AllowStreamLocalForwarding = false;
AllowTcpForwarding = true;
AuthenticationMethods = "publickey";
KbdInteractiveAuthentication = false;
PasswordAuthentication = false;
X11Forwarding = false;
};
};
avahi = {
enable = true;
browseDomains = [];
wideArea = false;
nssmdns4 = true;
};
unbound = {
enable = true;
settings.server = {
access-control = [];
interface = [];
};
};
# using VPN is generally a good idea
# use Mullvad btw
# mullvad-vpn.enable = true;
hardware.bolt.enable = true;
spice-vdagentd.enable = true;
qemuGuest.enable = true;
};
virtualisation = {
docker.enable = true;
hypervGuest.enable = true;
virtualbox.guest.enable = false;
vmware.guest.enable = true;
};
# networking better than on LinkedIn
networking = {
hostName = "RedNixOS";
proxy = {
# default = "http://user:password@proxy:port/";
# noProxy = "127.0.0.1,localhost,internal.domain";
};
wireless.enable = lib.mkForce false;
networkmanager.enable = true;
firewall = {
allowedTCPPorts = [22 80];
allowPing = false;
checkReversePath = "loose";
logReversePathDrops = true;
autoLoadConntrackHelpers = false;
connectionTrackingModules = [
"ftp"
"irc"
"sane"
"sip"
"tftp"
"amanda"
"h323"
"netbios_sn"
"pptp"
"snmp"
];
# trustedInterfaces = [ "" ];
};
};
security = {
# if you want, you can disable sudo and use doas
sudo = {
enable = true;
wheelNeedsPassword = true;
execWheelOnly = true;
};
# apparmor.enable = true;
# lockKernelModules = true;
auditd.enable = true;
audit = {
enable = true;
rules = ["-a exit, always -F arch=b64 -s execve"];
};
};
# default user config
users.users.red = {
isNormalUser = true;
description = "Red";
initialPassword = "rednixos";
extraGroups = [
"wheel"
"networkmanager"
"audio"
"video"
"input"
"docker"
];
};
# nix config
nix = {
package = pkgs.nixVersions.git;
settings = {
extra-experimental-features = [
"nix-command"
"flakes"
];
allowed-users = ["@wheel"]; # locks down access to nix-daemon
};
};
# nixpkgs config
nixpkgs.config = {
allowUnfree = true;
allowInsecurePredicate = p: true;
segger-jlink.acceptLicense = true;
};
# the system state version of NixOS. database schemas and other settings will
# depend on this. do NOT change unless you know what you're doing.
system.stateVersion = "unstable";
}