blob: 1c3b3a82618b0c1dc620b1a9c30b030d46403f82 (
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
|
{ config, pkgs, ... }: {
boot = {
initrd.kernelModules = [ "zfs" ];
kernel.sysctl = {
"net.ipv4.ip_forward" = true;
};
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/efiboot/efi1";
};
systemd-boot = {
enable = true;
extraInstallCommands = ''
${pkgs.coreutils}/bin/cp -r /efiboot/efi1/* /efiboot/efi2
'';
};
timeout = 3;
};
supportedFilesystems = [ "zfs" ];
};
#environment.systemPackages = with pkgs; [
# wpa_supplicant
# somethingelse
#];
imports = [
./hardware-configuration.nix
./services.nix
../common/core
#../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/openssh.nix
#../common/optional/services/xorg.nix
#../common/optional/sound.nix
../common/optional/zfs.nix
../common/users/nipsy
../common/users/root
];
networking = {
hostId = "f9ca5efe";
hostName = "darkstar";
defaultGateway = "192.168.1.1";
domain = "bitgnome.net";
interfaces = {
enp116s0 = {
ipv4.addresses = [
{ address = "192.168.1.16"; prefixLength = 24; }
];
};
vlan201 = {
useDHCP = true;
};
};
nameservers = [ "192.168.1.1" ];
#nat = {
# enable = true;
# #enableIPv6 = true;
# externalInterface = "enp117s0.201";
# internalInterfaces = [ "enp116s0" ];
#};
nftables.enable = true;
vlans = {
vlan201 = { id=201; interface="enp117s0"; };
};
#wireless.iwd = {
# enable = true;
# settings = {
# IPv6 = {
# Enabled = true;
# };
# Settings = {
# AutoConnect = true;
# };
# };
#};
};
system.stateVersion = "23.11";
}
|