My Nix Configuration
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

[hosts.zaphod] More framework 16 changes

Pyrox 6981c636 bd043ec6

+14 -12
-5
hosts/zaphod/bootloader.nix
··· 24 24 }; 25 25 efi.canTouchEfiVariables = true; 26 26 }; 27 - # lanzaboote = { 28 - # enable = true; 29 - # pkiBundle = "/etc/secureboot"; 30 - # package = inputs.lanzaboote.packages.x86_64-linux.lzbt; 31 - # }; 32 27 plymouth.enable = true; 33 28 }; 34 29 }
+8 -2
hosts/zaphod/hardware.nix
··· 16 16 enable = true; 17 17 driSupport = true; 18 18 driSupport32Bit = true; 19 - extraPackages = with pkgs; [ 20 - vaapiVdpau 19 + extraPackages = [ 20 + pkgs.mesa 21 + pkgs.vaapiVdpau 22 + ]; 23 + extraPackages32 = [ 24 + pkgs.mesa 21 25 ]; 22 26 }; 27 + # Disable amdvlk driver 28 + amdgpu.amdvlk = false; 23 29 sensor = { 24 30 hddtemp = { 25 31 enable = true;
+4 -2
hosts/zaphod/misc.nix
··· 24 24 time.timeZone = "America/New_York"; 25 25 26 26 environment.variables = { 27 - VDPAU_DRIVER = 28 - lib.mkIf config.hardware.opengl.enable (lib.mkDefault "va_gl"); 27 + LIBVA_DRIVER_NAME = "radeonsi"; 28 + LIBVA_DRIVERS_PATH = "/run/opengl-driver/lib/dri"; 29 + VDPAU_DRIVER = "raedonsi"; 30 + VDPAU_DRIVER_PATH = "/run/opengl-driver/lib/vdpau"; 29 31 }; 30 32 31 33 systemd.tmpfiles.rules = ["L+ /lib64 - - - - /run/current-system/sw/lib64"];
+2 -3
hosts/zaphod/packages.nix
··· 8 8 config.boot.kernelPackages.perf 9 9 clinfo 10 10 dig 11 - distrobox 12 11 hibernate 13 12 inputs.agenix.packages."${system}".default 14 13 gnupg 15 14 libappindicator 16 15 libappindicator-gtk3 17 - libsForQt5.qtstyleplugin-kvantum 18 16 networkmanagerapplet 19 17 pipewire.jack 20 18 pmutils ··· 22 20 sbctl 23 21 steam-run 24 22 steam-run-native 25 - wineWowPackages.waylandFull 23 + libva-utils 24 + vdpauinfo 26 25 ]; 27 26 }