blob: 5ec1e963af11de1ec1b53c5288b218ca2f85c331 (
plain)
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
|
{ config, inputs, outputs, pkgs, ... }: {
boot = {
initrd.kernelModules = [ "amdgpu" "zfs" ];
kernelPackages = pkgs.master.linuxPackages_6_14;
kernelParams = [
"amdgpu.ppfeaturemask=0xfffd3fff"
"split_lock_detect=off"
];
loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/efiboot/efi1";
};
systemd-boot = {
enable = true;
extraInstallCommands = ''
${pkgs.rsync}/bin/rsync -av --delete /efiboot/efi1/ /efiboot/efi2
'';
};
timeout = 3;
};
supportedFilesystems = [ "zfs" ];
zfs.package = pkgs.master.zfs;
};
environment.systemPackages = [
pkgs.angband
#pkgs.assaultcube
pkgs.bsdgames
pkgs.bzflag
pkgs.extremetuxracer
pkgs.fastfetch
#pkgs.frozen-bubble
pkgs.hedgewars
pkgs.kobodeluxe
pkgs.mailutils
pkgs.moc
pkgs.nethack
#pkgs.openttd
pkgs.qbittorrent-nox
pkgs.rdiff-backup
#pkgs.scorched3d
pkgs.signal-desktop
pkgs.superTux
pkgs.superTuxKart
pkgs.umoria
pkgs.vial
pkgs.warzone2100
#pkgs.wine9_22.wineWowPackages.stagingFull
pkgs.wpa_supplicant
pkgs.xonotic-sdl
#pkgs.xpilot-ng
];
imports = [
./disks.nix
./hardware-configuration.nix
./services.nix
../common/core
../common/optional/adb.nix
../common/optional/db.nix
../common/optional/dev.nix
../common/optional/ebooks.nix
../common/optional/games.nix
../common/optional/google-authenticator.nix
../common/optional/misc.nix
../common/optional/multimedia.nix
../common/optional/pipewire.nix
../common/optional/sdr.nix
../common/optional/services/chrony.nix
../common/optional/services/openssh.nix
../common/optional/services/xorg.nix
../common/optional/sound.nix
../common/optional/wdt.nix
../common/optional/zfs.nix
../common/users/nipsy
../common/users/root
];
networking = {
defaultGateway = {
address = "192.168.1.1";
interface = "wlp15s0";
};
domain = "bitgnome.net";
hostId = "8981d1e5";
hostName = "caladan";
interfaces = {
wlp15s0 = {
ipv4.addresses = [
{ address = "192.168.1.4"; prefixLength = 24; }
];
};
};
nameservers = [ "192.168.1.1" ];
nftables.enable = true;
useDHCP = false;
wireless = {
enable = true;
networks = {
"Crystal Palace" = {
pskRaw = "ext:psk_crystal_palace";
};
};
secretsFile = "${config.sops.secrets."wpa_supplicant".path}";
};
};
nixpkgs = {
config = {
allowUnfree = true;
};
hostPlatform = "x86_64-linux";
overlays = [
#inputs.nvidia-patch.overlays.default
outputs.overlays.additions
outputs.overlays.modifications
outputs.overlays.master-packages
outputs.overlays.stable-packages
#outputs.overlays.wine9_22-packages
];
};
services.openssh.settings.X11Forwarding = true;
services.xserver.videoDrivers = [ "amdgpu" ];
sops = {
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
defaultSopsFile = ../secrets/caladan.yaml;
secrets = {
"nftables/ssh" = {};
"nix-access-token-github" = {};
"ssh_config".path = "/root/.ssh/config";
"wpa_supplicant" = {};
};
};
system.stateVersion = "23.11";
systemd.services = {
"nftables-extra" = let rules_script = ''
${pkgs.nftables}/bin/nft insert rule inet nixos-fw input 'iifname "enp6s0" udp dport { 2456, 2457 } counter accept # Valheim dedicated server'
${pkgs.nftables}/bin/nft insert rule inet nixos-fw input 'iifname "enp6s0" udp dport 5121 counter accept # Neverwinter Nights Server'
${pkgs.nftables}/bin/nft insert rule inet nixos-fw input 'iifname "enp6s0" udp dport 15637 counter accept # Enshrouded'
${pkgs.nftables}/bin/nft insert rule inet nixos-fw input 'iifname "enp6s0" ip saddr 192.168.1.0/24 udp dport { 27031, 27036 } counter accept # Steam Remote Play'
${pkgs.nftables}/bin/nft insert rule inet nixos-fw input 'iifname "enp6s0" ip saddr 192.168.1.0/24 tcp dport { 27036, 27037 } counter accept # Steam Remote Play'
${pkgs.nftables}/bin/nft -f ${config.sops.secrets."nftables/ssh".path}
''; in {
description = "nftables extra firewall rules";
reload = rules_script;
script = rules_script;
serviceConfig = {
RemainAfterExit = true;
Type = "oneshot";
};
unitConfig = {
ConditionPathExists = [
config.sops.secrets."nftables/ssh".path
];
ReloadPropagatedFrom = "nftables.service";
};
wantedBy = [ "multi-user.target" ];
after = [ "nftables.service" ];
partOf = [ "nftables.service" ];
};
};
}
|