aboutsummaryrefslogtreecommitdiffstats
path: root/hosts
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-04 22:16:25 +0100
committerene <ene@sils.li>2023-02-04 22:16:25 +0100
commita49d4ce07eb85c01c606e65b6dcfe9f2160773db (patch)
treed6176e9135de2ba0115b2dd1ffb8ed98cadebea1 /hosts
parentFix: Used the correct syntax (diff)
downloadnixos-config-a49d4ce07eb85c01c606e65b6dcfe9f2160773db.zip
Feat: New host
I also changed the hostnames: IDOHVE -> Tiamat (laptop) -> Apzu
Diffstat (limited to 'hosts')
-rw-r--r--hosts/Apzu/configuration.nix (renamed from hosts/IDOHVE/configuration.nix)0
-rw-r--r--hosts/Apzu/hardware/cpu.nix4
-rw-r--r--hosts/Apzu/hardware/gpu.nix19
-rw-r--r--hosts/Apzu/hardware/hardware.nix (renamed from hosts/IDOHVE/hardware/hardware.nix)0
-rw-r--r--hosts/Apzu/networking.nix (renamed from hosts/IDOHVE/networking.nix)2
-rw-r--r--hosts/Tiamat/configuration.nix19
-rw-r--r--hosts/Tiamat/hardware/cpu.nix (renamed from hosts/IDOHVE/hardware/cpu.nix)0
-rw-r--r--hosts/Tiamat/hardware/gpu.nix (renamed from hosts/IDOHVE/hardware/gpu.nix)0
-rw-r--r--hosts/Tiamat/hardware/hardware.nix28
-rw-r--r--hosts/Tiamat/networking.nix14
10 files changed, 85 insertions, 1 deletions
diff --git a/hosts/IDOHVE/configuration.nix b/hosts/Apzu/configuration.nix
index e42cb05f..e42cb05f 100644
--- a/hosts/IDOHVE/configuration.nix
+++ b/hosts/Apzu/configuration.nix
diff --git a/hosts/Apzu/hardware/cpu.nix b/hosts/Apzu/hardware/cpu.nix
new file mode 100644
index 00000000..6859f72a
--- /dev/null
+++ b/hosts/Apzu/hardware/cpu.nix
@@ -0,0 +1,4 @@
+{config, ...}: {
+ powerManagement.cpuFreqGovernor = "powersave";
+ hardware.cpu.intel.updateMicrocode = true; # Why not?
+}
diff --git a/hosts/Apzu/hardware/gpu.nix b/hosts/Apzu/hardware/gpu.nix
new file mode 100644
index 00000000..741e8882
--- /dev/null
+++ b/hosts/Apzu/hardware/gpu.nix
@@ -0,0 +1,19 @@
+{
+ config,
+ pkgs,
+ lib,
+ ...
+}: {
+ nixpkgs.config.packageOverrides = pkgs: {
+ vaapiIntel = pkgs.vaapiIntel.override {enableHybridCodec = true;};
+ };
+ hardware.opengl = {
+ enable = true;
+ extraPackages = with pkgs; [
+ intel-media-driver # LIBVA_DRIVER_NAME=iHD
+ vaapiIntel # LIBVA_DRIVER_NAME=i965 (older but works better for Firefox/Chromium)
+ vaapiVdpau
+ libvdpau-va-gl
+ ];
+ };
+}
diff --git a/hosts/IDOHVE/hardware/hardware.nix b/hosts/Apzu/hardware/hardware.nix
index c36b7062..c36b7062 100644
--- a/hosts/IDOHVE/hardware/hardware.nix
+++ b/hosts/Apzu/hardware/hardware.nix
diff --git a/hosts/IDOHVE/networking.nix b/hosts/Apzu/networking.nix
index 5d5f194a..17f7c356 100644
--- a/hosts/IDOHVE/networking.nix
+++ b/hosts/Apzu/networking.nix
@@ -10,5 +10,5 @@
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true;
- networking.hostName = "IDOHVE";
+ networking.hostName = "Apzu";
}
diff --git a/hosts/Tiamat/configuration.nix b/hosts/Tiamat/configuration.nix
new file mode 100644
index 00000000..e42cb05f
--- /dev/null
+++ b/hosts/Tiamat/configuration.nix
@@ -0,0 +1,19 @@
+# vim: ts=2
+{
+ config,
+ lib,
+ nixpkgs,
+ home-manager,
+ ...
+}: {
+ imports = [
+ ./hardware/hardware.nix
+ ./networking.nix
+
+ ../../system/system.nix
+
+ ../../services/services.nix
+ ];
+
+ system.stateVersion = "23.05";
+}
diff --git a/hosts/IDOHVE/hardware/cpu.nix b/hosts/Tiamat/hardware/cpu.nix
index 2d7232cd..2d7232cd 100644
--- a/hosts/IDOHVE/hardware/cpu.nix
+++ b/hosts/Tiamat/hardware/cpu.nix
diff --git a/hosts/IDOHVE/hardware/gpu.nix b/hosts/Tiamat/hardware/gpu.nix
index c3df51ae..c3df51ae 100644
--- a/hosts/IDOHVE/hardware/gpu.nix
+++ b/hosts/Tiamat/hardware/gpu.nix
diff --git a/hosts/Tiamat/hardware/hardware.nix b/hosts/Tiamat/hardware/hardware.nix
new file mode 100644
index 00000000..c36b7062
--- /dev/null
+++ b/hosts/Tiamat/hardware/hardware.nix
@@ -0,0 +1,28 @@
+{
+ config,
+ lib,
+ pkgs,
+ modulesPath,
+ ...
+}: {
+ imports = [
+ (modulesPath + "/installer/scan/not-detected.nix") # TODO is this necessary?
+ ./cpu.nix
+ ./gpu.nix
+ ];
+
+ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
+
+ system.filesystemLayouts = {
+ enable = true;
+ mainDisk = "/dev/disk/by-uuid/<uuid>";
+ efiDisk = "/dev/disk/by-uuid/<uuid>";
+ };
+
+ boot = {
+ kernelModules = ["kvm-amd"];
+
+ # TODO check this:
+ initrd.availableKernelModules = ["xhci_pci" "nvme" "rtsx_pci_sdmmc"];
+ };
+}
diff --git a/hosts/Tiamat/networking.nix b/hosts/Tiamat/networking.nix
new file mode 100644
index 00000000..d50b3af1
--- /dev/null
+++ b/hosts/Tiamat/networking.nix
@@ -0,0 +1,14 @@
+{
+ config,
+ lib,
+ ...
+}: {
+ # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
+ # (the default) this is the recommended approach. When using systemd-networkd it's
+ # still possible to use this option, but it's recommended to use it in conjunction
+ # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
+ networking.useDHCP = lib.mkDefault true;
+ # networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true;
+ # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true;
+ networking.hostName = "Tiamat";
+}