blob: 81a67157d0fbc8ef59655bcffc4db74fe096eb78 (
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
|
{
inputs,
lib,
...
}:
{
system.stateVersion = "24.05";
imports = [ ./filesystems ];
hardware = {
enableRedistributableFirmware = true;
cpu.amd.updateMicrocode = true;
};
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
boot.initrd.availableKernelModules = [
"nvme"
"xhci_pci"
"ahci"
"usb_storage"
"usbhid"
"sd_mod"
];
boot.kernelModules = [ "kvm-amd" ];
boot.binfmt.emulatedSystems = [
"aarch64-linux"
"riscv64-linux"
];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users = import "${inputs.self}/users";
extraSpecialArgs = {
inherit inputs;
headless = false;
};
};
time.timeZone = "America/Detroit";
networking = {
hostName = "woodpecker";
nameservers = [ "10.44.0.1" ];
defaultGateway.address = "10.44.0.1";
interfaces.enp42s0 = {
useDHCP = false;
ipv4.addresses = lib.singleton {
address = "10.44.4.50";
prefixLength = 16;
};
};
};
}
|