From 42892ece8e15fe49cfe3886054a0628c7243ad05 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 20 Jul 2021 20:42:46 -0600 Subject: [PATCH] [NixOS] Use nixos-hardware for adele --- nixos/flake.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nixos/flake.nix b/nixos/flake.nix index 50b769d1..26293032 100644 --- a/nixos/flake.nix +++ b/nixos/flake.nix @@ -1,6 +1,6 @@ { inputs = { - nixos-hardware.url = github:nixos/nixos-hardware; + nixos-hardware.url = github:IvanMalison/nixos-hardware; nix = { url = github:IvanMalison/nix/master; inputs.nixpkgs.follows = "nixpkgs"; @@ -68,7 +68,11 @@ }; adele = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - modules = [ forAll ./machines/adele.nix ]; + modules = [ forAll ./machines/adele.nix ({ ... }: { + imports = [ + nixos-hardware.nixosModules.dell-xps-17-9700-intel + ]; + })]; }; biskcomp = nixpkgs.lib.nixosSystem { system = "aarch64-linux";