From effeb63067b439c433efede905165af752919f3d Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Thu, 6 Jun 2024 15:47:44 -0500 Subject: [PATCH] added config for framework specific hardware things --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index a0d15de..b97f0a0 100644 --- a/flake.nix +++ b/flake.nix @@ -10,9 +10,11 @@ url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; + + nixos-hardware.url = "github:NixOS/nixos-hardware/master"; }; - outputs = { self, nixpkgs, ... }@inputs: + outputs = { self, nixpkgs, nixos-hardware, ... }@inputs: let forEachSystem = nixpkgs.lib.genAttrs [ "x86_64-linux" ]; forEachPkgs = lambda: forEachSystem (system: lambda nixpkgs.legacyPackages.${system}); @@ -26,6 +28,7 @@ modules = [ ./hosts/horizon/configuration.nix inputs.home-manager.nixosModules.default + nixos-hardware.nixosModules.framework-11th-gen-intel ]; }; };