blob: c6ad5ffeb49d709820666ed8b953e0ab878bc5e4 (
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
|
{ config, inputs, outputs, pkgs, ... }: {
boot = {
initrd.kernelModules = [ "amdgpu" "zfs" ];
#kernel.sysctl = {
# "net.ipv4.ip_forward" = true;
#};
kernelPackages = pkgs.linuxPackages_6_12;
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
timeout = 3;
};
supportedFilesystems = [ "zfs" ];
zfs = {
devNodes = "/dev/disk/by-label";
#package = pkgs.master.zfs;
};
};
environment.systemPackages = with pkgs; [
wpa_supplicant
];
imports = [
./disks.nix
./hardware-configuration.nix
../common/core
../common/optional/misc.nix
../common/optional/services/fwupd.nix
../common/optional/services/nolid.nix
../common/optional/services/openssh.nix
../common/optional/services/tlp.nix
../common/optional/zfs.nix
../common/users/nipsy
../common/users/root
];
networking = {
hostId = "d3a9e699";
hostName = "jupiter";
domain = "bitgnome.net";
nftables.enable = true;
interfaces.enp2s0f0.wakeOnLan.enable = true;
wireless = {
enable = true;
userControlled.enable = true;
};
};
nixpkgs = {
config.allowUnfree = true;
hostPlatform = "x86_64-linux";
overlays = [
outputs.overlays.additions
outputs.overlays.modifications
outputs.overlays.master-packages
outputs.overlays.stable-packages
];
};
#sops = {
# age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
# defaultSopsFile = ../secrets/jupiter.yaml;
# secrets = {
# "kea-dhcp4_conf" = {};
# "nftables/forward" = {};
# "nftables/ssh" = {};
# "nix-access-token-github" = {};
# };
#};
system.stateVersion = "24.11";
}
|