aboutsummaryrefslogtreecommitdiff
path: root/hosts/frigg/default.nix
blob: 5c29df3a18dcc4ac16f28494efc4a149be4b2ea3 (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
{
  inputs,
  lib,
  ...
}:
{
  system.stateVersion = "24.05";

  imports = [
    ./filesystems
    ./modules
  ];

  hardware = {
    enableRedistributableFirmware = true;
    cpu.intel.updateMicrocode = true;
  };

  boot.loader = {
    systemd-boot.enable = true;
    efi.canTouchEfiVariables = true;
  };
  boot.initrd.availableKernelModules = [
    "ahci"
    "sd_mod"
    "sdhci_pci"
    "usb_storage"
    "xhci_pci"
  ];
  boot.kernelModules = [ "kvm-intel" ];
  boot.zfs.extraPools = [ "tank" ];

  home-manager = {
    useGlobalPkgs = true;
    useUserPackages = true;
    users = import "${inputs.self}/users";
    extraSpecialArgs = {
      inherit inputs;
      headless = true;
    };
  };

  time.timeZone = "America/Detroit";
  networking = {
    hostName = "frigg";
    # A host ID is required when enabling ZFS.
    hostId = "7a7d723a";
    nameservers = [ "10.44.0.1" ];
    defaultGateway.address = "10.44.0.1";
    interfaces.enp59s0 = {
      useDHCP = false;
      ipv4.addresses = lib.singleton {
        address = "10.44.4.103";
        prefixLength = 16;
      };
    };
  };
}