home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit fc967ae8e06e0823b7b1565b322beac05ca2d204
parent f463d19c908a288fff2ad9c7d974551537f0a684
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Tue, 23 Aug 2022 17:00:38 +0200

systems: fixing hardware and syncthing modules

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Msystems/hardware/thinkpad-x1g9.nix | 2+-
Msystems/hardware/thinkpad.nix | 2+-
Msystems/modules/profiles/syncthing.nix | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/systems/hardware/thinkpad-x1g9.nix b/systems/hardware/thinkpad-x1g9.nix @@ -30,7 +30,7 @@ enableAllFirmware = true; trackpoint.enable = false; cpu.intel.updateMicrocode = true; - opengl.extraPackages = with pkgs; [ vaapiIntel ]; + opengl.extraPackages = with pkgs; [ vaapiIntel libvdpau-va-gl vaapiVdpau intel-ocl intel-media-driver beignet ]; }; services = { hardware.bolt.enable = true; diff --git a/systems/hardware/thinkpad.nix b/systems/hardware/thinkpad.nix @@ -29,7 +29,7 @@ hardware = { trackpoint.enable = false; cpu.intel.updateMicrocode = true; - hardware.opengl.extraPackages = with pkgs; [ vaapiIntel libvdpau-va-gl vaapiVdpau intel-ocl intel-media-driver beignet ]; + opengl.extraPackages = with pkgs; [ vaapiIntel libvdpau-va-gl vaapiVdpau intel-ocl intel-media-driver beignet ]; }; services = { acpid = { diff --git a/systems/modules/profiles/syncthing.nix b/systems/modules/profiles/syncthing.nix @@ -11,7 +11,7 @@ in }; }; config = mkIf cfg.enable { - warnings = [ "The option 'profiles.syncthing' is deprecated, use 'modules.desktop.syncthing' instead" ]; + warnings = [ "The option 'profiles.syncthing' is deprecated, use 'modules.services.syncthing' instead" ]; modules.services.syncthing.enable = cfg.enable; }; }