diff options
Diffstat (limited to 'hosts/IDOHVE/hardware')
-rw-r--r-- | hosts/IDOHVE/hardware/boot.nix | 2 | ||||
-rwxr-xr-x | hosts/IDOHVE/hardware/boot_pictures/gnu.png | bin | 0 -> 327518 bytes | |||
-rwxr-xr-x | hosts/IDOHVE/hardware/boot_pictures/gnulin_emb_1.png | bin | 0 -> 207444 bytes | |||
-rwxr-xr-x | hosts/IDOHVE/hardware/boot_pictures/gnulin_emb_2.png | bin | 0 -> 208347 bytes | |||
-rw-r--r-- | hosts/IDOHVE/hardware/cpu.nix | 2 | ||||
-rw-r--r-- | hosts/IDOHVE/hardware/gpu.nix | 1 | ||||
-rw-r--r-- | hosts/IDOHVE/hardware/hardware.nix | 4 |
7 files changed, 3 insertions, 6 deletions
diff --git a/hosts/IDOHVE/hardware/boot.nix b/hosts/IDOHVE/hardware/boot.nix index 932155a4..4cd94191 100644 --- a/hosts/IDOHVE/hardware/boot.nix +++ b/hosts/IDOHVE/hardware/boot.nix @@ -19,7 +19,7 @@ enable = true; version = 2; theme = pkgs.nixos-grub2-theme; - splashImage = ./grub_boot_image.png; + splashImage = ./boot_pictures/gnu.png; efiSupport = true; device = "nodev"; # only for efi }; diff --git a/hosts/IDOHVE/hardware/boot_pictures/gnu.png b/hosts/IDOHVE/hardware/boot_pictures/gnu.png new file mode 100755 index 00000000..d07dee3e --- /dev/null +++ b/hosts/IDOHVE/hardware/boot_pictures/gnu.png Binary files differdiff --git a/hosts/IDOHVE/hardware/boot_pictures/gnulin_emb_1.png b/hosts/IDOHVE/hardware/boot_pictures/gnulin_emb_1.png new file mode 100755 index 00000000..483f2681 --- /dev/null +++ b/hosts/IDOHVE/hardware/boot_pictures/gnulin_emb_1.png Binary files differdiff --git a/hosts/IDOHVE/hardware/boot_pictures/gnulin_emb_2.png b/hosts/IDOHVE/hardware/boot_pictures/gnulin_emb_2.png new file mode 100755 index 00000000..48cd6ad7 --- /dev/null +++ b/hosts/IDOHVE/hardware/boot_pictures/gnulin_emb_2.png Binary files differdiff --git a/hosts/IDOHVE/hardware/cpu.nix b/hosts/IDOHVE/hardware/cpu.nix index 5d61d02f..2d7232cd 100644 --- a/hosts/IDOHVE/hardware/cpu.nix +++ b/hosts/IDOHVE/hardware/cpu.nix @@ -1,4 +1,4 @@ {config, ...}: { - powerManagement.cpuFreqGovernor = "powersave"; + powerManagement.cpuFreqGovernor = "powersave"; hardware.cpu.amd.updateMicrocode = true; # Why not? } diff --git a/hosts/IDOHVE/hardware/gpu.nix b/hosts/IDOHVE/hardware/gpu.nix index 49197c2b..c3df51ae 100644 --- a/hosts/IDOHVE/hardware/gpu.nix +++ b/hosts/IDOHVE/hardware/gpu.nix @@ -4,7 +4,6 @@ lib, ... }: { - hardware.opengl.extraPackages = with pkgs; [ rocm-opencl-icd # open-cl amdvlk # or directly through mesa diff --git a/hosts/IDOHVE/hardware/hardware.nix b/hosts/IDOHVE/hardware/hardware.nix index 20e4c4f3..2d21ce8a 100644 --- a/hosts/IDOHVE/hardware/hardware.nix +++ b/hosts/IDOHVE/hardware/hardware.nix @@ -4,7 +4,7 @@ pkgs, modulesPath, ... -}:{ +}: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") # TODO is this necessary? ./cpu.nix @@ -13,7 +13,5 @@ ./filesystems.nix ]; - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; } - |