From a49d4ce07eb85c01c606e65b6dcfe9f2160773db Mon Sep 17 00:00:00 2001 From: ene Date: Sat, 4 Feb 2023 22:16:25 +0100 Subject: Feat: New host I also changed the hostnames: IDOHVE -> Tiamat (laptop) -> Apzu --- hosts/Apzu/configuration.nix | 19 +++++++++++++++++++ hosts/Apzu/hardware/cpu.nix | 4 ++++ hosts/Apzu/hardware/gpu.nix | 19 +++++++++++++++++++ hosts/Apzu/hardware/hardware.nix | 28 ++++++++++++++++++++++++++++ hosts/Apzu/networking.nix | 14 ++++++++++++++ hosts/IDOHVE/configuration.nix | 19 ------------------- hosts/IDOHVE/hardware/cpu.nix | 4 ---- hosts/IDOHVE/hardware/gpu.nix | 15 --------------- hosts/IDOHVE/hardware/hardware.nix | 28 ---------------------------- hosts/IDOHVE/networking.nix | 14 -------------- hosts/Tiamat/configuration.nix | 19 +++++++++++++++++++ hosts/Tiamat/hardware/cpu.nix | 4 ++++ hosts/Tiamat/hardware/gpu.nix | 15 +++++++++++++++ hosts/Tiamat/hardware/hardware.nix | 28 ++++++++++++++++++++++++++++ hosts/Tiamat/networking.nix | 14 ++++++++++++++ 15 files changed, 164 insertions(+), 80 deletions(-) create mode 100644 hosts/Apzu/configuration.nix create mode 100644 hosts/Apzu/hardware/cpu.nix create mode 100644 hosts/Apzu/hardware/gpu.nix create mode 100644 hosts/Apzu/hardware/hardware.nix create mode 100644 hosts/Apzu/networking.nix delete mode 100644 hosts/IDOHVE/configuration.nix delete mode 100644 hosts/IDOHVE/hardware/cpu.nix delete mode 100644 hosts/IDOHVE/hardware/gpu.nix delete mode 100644 hosts/IDOHVE/hardware/hardware.nix delete mode 100644 hosts/IDOHVE/networking.nix create mode 100644 hosts/Tiamat/configuration.nix create mode 100644 hosts/Tiamat/hardware/cpu.nix create mode 100644 hosts/Tiamat/hardware/gpu.nix create mode 100644 hosts/Tiamat/hardware/hardware.nix create mode 100644 hosts/Tiamat/networking.nix (limited to 'hosts') diff --git a/hosts/Apzu/configuration.nix b/hosts/Apzu/configuration.nix new file mode 100644 index 00000000..e42cb05f --- /dev/null +++ b/hosts/Apzu/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/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/Apzu/hardware/hardware.nix b/hosts/Apzu/hardware/hardware.nix new file mode 100644 index 00000000..c36b7062 --- /dev/null +++ b/hosts/Apzu/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/"; + efiDisk = "/dev/disk/by-uuid/"; + }; + + boot = { + kernelModules = ["kvm-amd"]; + + # TODO check this: + initrd.availableKernelModules = ["xhci_pci" "nvme" "rtsx_pci_sdmmc"]; + }; +} diff --git a/hosts/Apzu/networking.nix b/hosts/Apzu/networking.nix new file mode 100644 index 00000000..17f7c356 --- /dev/null +++ b/hosts/Apzu/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..useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true; + networking.hostName = "Apzu"; +} diff --git a/hosts/IDOHVE/configuration.nix b/hosts/IDOHVE/configuration.nix deleted file mode 100644 index e42cb05f..00000000 --- a/hosts/IDOHVE/configuration.nix +++ /dev/null @@ -1,19 +0,0 @@ -# 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/IDOHVE/hardware/cpu.nix deleted file mode 100644 index 2d7232cd..00000000 --- a/hosts/IDOHVE/hardware/cpu.nix +++ /dev/null @@ -1,4 +0,0 @@ -{config, ...}: { - powerManagement.cpuFreqGovernor = "powersave"; - hardware.cpu.amd.updateMicrocode = true; # Why not? -} diff --git a/hosts/IDOHVE/hardware/gpu.nix b/hosts/IDOHVE/hardware/gpu.nix deleted file mode 100644 index c3df51ae..00000000 --- a/hosts/IDOHVE/hardware/gpu.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ - config, - pkgs, - lib, - ... -}: { - hardware.opengl.extraPackages = with pkgs; [ - rocm-opencl-icd # open-cl - amdvlk # or directly through mesa - amd-media-driver # libva - ]; - - # Force radv, TODO is this logical? - environment.variables.AMD_VULKAN_ICD = "RADV"; -} diff --git a/hosts/IDOHVE/hardware/hardware.nix b/hosts/IDOHVE/hardware/hardware.nix deleted file mode 100644 index c36b7062..00000000 --- a/hosts/IDOHVE/hardware/hardware.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ - 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/"; - efiDisk = "/dev/disk/by-uuid/"; - }; - - boot = { - kernelModules = ["kvm-amd"]; - - # TODO check this: - initrd.availableKernelModules = ["xhci_pci" "nvme" "rtsx_pci_sdmmc"]; - }; -} diff --git a/hosts/IDOHVE/networking.nix b/hosts/IDOHVE/networking.nix deleted file mode 100644 index 5d5f194a..00000000 --- a/hosts/IDOHVE/networking.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ - 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..useDHCP`. - networking.useDHCP = lib.mkDefault true; - # networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true; - # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true; - networking.hostName = "IDOHVE"; -} 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/Tiamat/hardware/cpu.nix b/hosts/Tiamat/hardware/cpu.nix new file mode 100644 index 00000000..2d7232cd --- /dev/null +++ b/hosts/Tiamat/hardware/cpu.nix @@ -0,0 +1,4 @@ +{config, ...}: { + powerManagement.cpuFreqGovernor = "powersave"; + hardware.cpu.amd.updateMicrocode = true; # Why not? +} diff --git a/hosts/Tiamat/hardware/gpu.nix b/hosts/Tiamat/hardware/gpu.nix new file mode 100644 index 00000000..c3df51ae --- /dev/null +++ b/hosts/Tiamat/hardware/gpu.nix @@ -0,0 +1,15 @@ +{ + config, + pkgs, + lib, + ... +}: { + hardware.opengl.extraPackages = with pkgs; [ + rocm-opencl-icd # open-cl + amdvlk # or directly through mesa + amd-media-driver # libva + ]; + + # Force radv, TODO is this logical? + environment.variables.AMD_VULKAN_ICD = "RADV"; +} 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/"; + efiDisk = "/dev/disk/by-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..useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true; + networking.hostName = "Tiamat"; +} -- cgit 1.4.1