From 653285505c415fa0f0779ebcef60b4b88c55382c Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Tue, 19 Sep 2023 21:34:45 +0200 Subject: [PATCH] Add hardware quirk only for laptop config --- flake.nix | 1 - nixos-configurations/laptop/default.nix | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 3ba40e8..7410eb7 100644 --- a/flake.nix +++ b/flake.nix @@ -34,7 +34,6 @@ } entrypoint home-manager.nixosModules.home-manager - nixos-hardware.nixosModules.lenovo-thinkpad-t480 { home-manager = { useGlobalPkgs = true; diff --git a/nixos-configurations/laptop/default.nix b/nixos-configurations/laptop/default.nix index 19b2b23..b6faf6d 100644 --- a/nixos-configurations/laptop/default.nix +++ b/nixos-configurations/laptop/default.nix @@ -1,7 +1,8 @@ -{ config, pkgs, ... }: +{ config, pkgs, inputs, ... }: { imports = [ + inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t480 ./hardware-configuration.nix ../shared-desktop.nix ../shared.nix