From d8fe4ce6eac86aa928950515ffad220c19275bd4 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Wed, 9 Apr 2025 20:54:42 +0200 Subject: [PATCH] hosts/{hermit, temperance}: enable intel --- hosts/hermit/configuration.nix | 1 + hosts/temperance/configuration.nix | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/hermit/configuration.nix b/hosts/hermit/configuration.nix index 11dce4c..82d1618 100644 --- a/hosts/hermit/configuration.nix +++ b/hosts/hermit/configuration.nix @@ -34,6 +34,7 @@ }; hardware = { nvidia.enable = true; + intel.enable = true; bluetooth = { enable = true; powerOnBoot = false; diff --git a/hosts/temperance/configuration.nix b/hosts/temperance/configuration.nix index d7f255f..71af206 100644 --- a/hosts/temperance/configuration.nix +++ b/hosts/temperance/configuration.nix @@ -59,7 +59,10 @@ in { }; }; sound.enable = true; - hardware.nvidia.enable = true; + hardware = { + intel.enable = true; + nvidia.enable = true; + }; }; desktops.hyprland.enable = true;