blob: ee3d128094949bc00cca8f03a82b28713f958923 (
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
|
{ pkgs, ... }:
{
imports = [
./hardware/hephaestus.nix
./software/desktop
];
boot = {
loader = {
systemd-boot = {
enable = true;
configurationLimit = 3;
};
efi.canTouchEfiVariables = true;
};
initrd.luks.devices = {
encrypted = {
device = "/dev/nvme0n1p5";
preLVM = true;
allowDiscards = true;
};
};
};
networking = {
hostName = "hephaestus";
firewall.enable = false;
};
services.xserver.videoDrivers = [ "nvidia" ];
hardware.nvidia.package = pkgs.linuxPackages.nvidia_x11;
networking.wireguard.interfaces = {
wg0 = {
ips = [ "10.100.0.7/24" ];
privateKeyFile = "/etc/wireguard/private";
peers = [
{ # automatix
publicKey = "B0tkjq+5SfECKx1gWEP5JVWOIaRWL2JNE7iSpMmN4F0=";
allowedIPs = [ "10.100.0.0/24" ];
endpoint = "kummerlaender.eu:54321";
persistentKeepalive = 10;
}
];
};
};
system.stateVersion = "21.05";
}
|